Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: liquibase delete scan query on read changesets #172

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions liquibase-dialect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.1 ##

* Read changesets from QueryService

## 1.1.0 ##

* Supported UUID type in .xml, .yaml, and .json formats
Expand Down
4 changes: 2 additions & 2 deletions liquibase-dialect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>tech.ydb.dialects</groupId>
<artifactId>liquibase-ydb-dialect</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>

<name>Liquibase YDB Dialect</name>
<description>Support Liquibase YDB Dialect</description>
Expand Down Expand Up @@ -43,7 +43,7 @@
<maven.compiler.source>1.8</maven.compiler.source>

<liquibase.core.version>4.24.0</liquibase.core.version>
<ydb.jdbc.version>2.3.3</ydb.jdbc.version>
<ydb.jdbc.version>2.3.6</ydb.jdbc.version>
</properties>

<dependencies>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ tech.ydb.liquibase.sqlgenerator.DropPrimaryKeyGeneratorSql
tech.ydb.liquibase.sqlgenerator.GetViewDefinitionGeneratorYdb
tech.ydb.liquibase.sqlgenerator.InsertOrUpdateGeneratorYdb
tech.ydb.liquibase.sqlgenerator.RenameColumnGeneratorYdb
tech.ydb.liquibase.sqlgenerator.RenameTableGeneratorYdb
tech.ydb.liquibase.sqlgenerator.SelectFromDatabaseChangeLogGeneratorYdb
tech.ydb.liquibase.sqlgenerator.RenameTableGeneratorYdb
2 changes: 1 addition & 1 deletion liquibase-dialect/stress-test/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
YDB_JDBC_DRIVER_VERSION=2.3.3
YDB_JDBC_DRIVER_VERSION=2.3.6

echo Stress test using ydb-jdbc-driver-shaded:"$YDB_JDBC_DRIVER_VERSION"

Expand Down