Maxime Wiewiora

Results 52 comments of Maxime Wiewiora

I submitted a proposal for a fix. It's not optimal because it requires to execute a `SELECT *` query in replacement of the `SELECT COUNT(*)` one, then counting the rows...

@pasarbia Based on the provided stacktrace, it seems it uses the standard implementation of Liquibase instead of the custom lock service for Cassandra. ``` at liquibase.lockservice.StandardLockService.isDatabaseChangeLogLockTableInitialized(StandardLockService.java:219) at liquibase.lockservice.StandardLockService.init(StandardLockService.java:135) ``` But...

@pasarbia I don't think it's related, but the JDBC URL here contains an error: `liquibase.command.url=jdbc:cassandra://cassandra.eu-west-1.amazonaws.com:9142/keyspace?compliancemode=Liquibase&&configfile=/home/ubuntu/liquibase/lib/application.conf` There are two `&` between `Liquibase` and `configfile` instead of only one. But I guess,...

@pasarbia There is something surprising in the logs you provided, the loaded jar for liquibase-cassandra is : `/home/ubuntu/liquibase/lib/liquibase-cassandra-4.27.0.jar` but previously you indicated this path `/home/ubuntu/liquibase/lib/liquibase-cassandra-4.28.0-SNAPSHOT.jar`, but maybe you just renamed...

@filipelautert @rberezen Could you have a look to the PR #296 please? This should fix the issue described in the last messages. I locally tested and it's now walking through...

@pasarbia Oh! It seems AWS keyspaces is not really friendly with Liquibase-Cassandra. 😄 There is here probably a little bit more work to do in order to be compliant with...

As this issue is closed and the incompatibility problem is large enough finally, I created a dedicated issue: https://github.com/liquibase/liquibase-cassandra/issues/297

Hello @noda-sin, Very interesting finding! Another solution could also be to modify the behaviour of the Cassandra JDBC driver to better handle the multiple statements. Indeed, splitting by semi-colons is...

@noda-sin I think we can keep this one open until the issue is fully fixed and the fix successfully tested with Liquibase (when it'll be available).

Hello @eddumelendez, thanks for your response. Yes, it should be possible to run CQL scripts without using the Java driver thanks to [`cqlsh`](https://cassandra.apache.org/doc/stable/cassandra/tools/cqlsh.html) CLI provided with Cassandra server. And this...