Skip to content
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
12 changes: 10 additions & 2 deletions spring-data-jdbc-ydb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 1.2.2 ##

- Fixed YDB Decimal

## 1.2.1 ##

- Reverted public visible for YdbSqlType

## 1.2.0 ##

- Support for `Date32`, `Datetime64`, and `Timestamp64` YDB types.
Expand All @@ -17,6 +25,6 @@

## 0.9.1 ##

- Supported VIEW statement from @ViewIndex
- YdbDialect fully supports YQL
- Supported VIEW statement from @ViewIndex
- YdbDialect fully supports YQL
- Supported specific @YdbType
18 changes: 8 additions & 10 deletions spring-data-jdbc-ydb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>tech.ydb.dialects</groupId>
<artifactId>spring-data-jdbc-ydb</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.3-SNAPSHOT</version>

<name>Spring Data JDBC YDB Dialect</name>
<description>Support Spring Data JDBC YDB (YQL) Dialect</description>
Expand Down Expand Up @@ -46,8 +46,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>

<junit5.version>5.10.2</junit5.version>
<liquibase.version>4.24.0</liquibase.version>
Expand Down Expand Up @@ -126,7 +124,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<version>3.12.0</version>
<configuration>
<source>17</source>
</configuration>
Expand All @@ -142,7 +140,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -155,7 +153,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.0</version>
<version>3.5.5</version>
<configuration>
<environmentVariables>
<TESTCONTAINERS_REUSE_ENABLE>true</TESTCONTAINERS_REUSE_ENABLE>
Expand All @@ -177,13 +175,13 @@
<profile>
<id>spring-boot3</id>
<properties>
<spring.version>3.5.7</spring.version>
<spring.version>3.5.11</spring.version>
</properties>
</profile>
<profile>
<id>spring-boot4</id>
<properties>
<spring.version>4.0.0</spring.version>
<spring.version>4.0.3</spring.version>
</properties>
<dependencies>
<dependency>
Expand All @@ -204,7 +202,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -224,7 +222,7 @@
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.7.0</version>
<version>0.10.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>ossrh-s01</publishingServerId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ final class YdbConst {
private static final int SQL_KIND_DECIMAL = 1 << 14; // 16384

public static int ydbDecimal(int precision, int scale) {
return SQL_KIND_DECIMAL + (precision << 6) + (scale & 0x111111);
return SQL_KIND_DECIMAL + (precision << 6) + (scale & 0b111111);
}

private YdbConst() { };
Expand Down
Loading