-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev: ydb jdbc driver make provided & remove org.jetbrains (#152)
- Loading branch information
1 parent
276fb5d
commit 157f7b6
Showing
72 changed files
with
1,467 additions
and
1,640 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
<groupId>tech.ydb.dialects</groupId> | ||
<artifactId>jooq-ydb-dialect</artifactId> | ||
<version>1.0.0-RC0</version> | ||
<version>1.0.0-RC1</version> | ||
|
||
<name>YDB JOOQ Dialect module</name> | ||
<description>YDB JOOQ Dialect module</description> | ||
|
@@ -36,6 +36,12 @@ | |
<name>Ilya Kriushenkov</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<name>Kirill Kurdyukov</name> | ||
<email>[email protected]</email> | ||
<organization>YDB</organization> | ||
<organizationUrl>https://ydb.tech/</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<properties> | ||
|
@@ -47,7 +53,7 @@ | |
<jooq.version>3.19.0</jooq.version> | ||
|
||
<ydb.sdk.version>2.2.6</ydb.sdk.version> | ||
<ydb.jdbc.version>2.1.5</ydb.jdbc.version> | ||
<ydb.jdbc.version>2.2.3</ydb.jdbc.version> | ||
</properties> | ||
|
||
<dependencies> | ||
|
@@ -63,18 +69,13 @@ | |
<version>${jooq.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jetbrains</groupId> | ||
<artifactId>annotations</artifactId> | ||
<version>24.1.0</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>tech.ydb.jdbc</groupId> | ||
<artifactId>ydb-jdbc-driver-shaded</artifactId> | ||
<artifactId>ydb-jdbc-driver</artifactId> | ||
<version>${ydb.jdbc.version}</version> | ||
<scope>compile</scope> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>tech.ydb.test</groupId> | ||
<artifactId>ydb-junit5-support</artifactId> | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
105 changes: 52 additions & 53 deletions
105
jooq-dialect/src/main/java/tech/ydb/jooq/YdbDSLContext.java
Large diffs are not rendered by default.
Oops, something went wrong.
837 changes: 318 additions & 519 deletions
837
jooq-dialect/src/main/java/tech/ydb/jooq/YdbFunction.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 2 additions & 6 deletions
8
jooq-dialect/src/main/java/tech/ydb/jooq/binding/JsonDocumentBinding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 3 additions & 7 deletions
10
jooq-dialect/src/main/java/tech/ydb/jooq/binding/TzTimestampBinding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.