File tree Expand file tree Collapse file tree 4 files changed +17
-6
lines changed
src/main/java/tech/ydb/data/core/dialect Expand file tree Collapse file tree 4 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 3232 distribution : ' temurin'
3333 cache : ' maven'
3434
35+ - name : Download dependencies (Default)
36+ working-directory : ./spring-data-jdbc-ydb
37+ run : mvn $MAVEN_ARGS dependency:resolve-plugins dependency:go-offline
38+
3539 - name : Download dependencies (Spring Boot 3)
3640 working-directory : ./spring-data-jdbc-ydb
3741 run : mvn $MAVEN_ARGS -Pspring-boot3 dependency:resolve-plugins dependency:go-offline
6165
6266 - name : Build spring-data-jdbc YDB dialect
6367 working-directory : ./spring-data-jdbc-ydb
64- run : mvn $MAVEN_ARGS -DskipTests=true package
68+ run : mvn $MAVEN_ARGS package
6569
6670 - name : Tests with Spring Boot 3
6771 working-directory : ./spring-data-jdbc-ydb
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ that provides support for working with [YDB](https://ydb.tech).
2222To use this Spring Data JDBC YDB Dialect, you'll need:
2323
2424- Java 17 or above.
25- - Spring Data JDBC 3.5 +
25+ - Spring Data JDBC 3.4 +
2626- [ YDB JDBC Driver] ( https://github.com/ydb-platform/ydb-jdbc-driver )
2727- Access to a YDB Database instance
2828
Original file line number Diff line number Diff line change 165165 </plugins >
166166 </build >
167167 <profiles >
168+ <profile >
169+ <id >spring-boot-minimal</id >
170+ <activation >
171+ <activeByDefault >true</activeByDefault >
172+ </activation >
173+ <properties >
174+ <spring .version>3.4.0</spring .version>
175+ </properties >
176+ </profile >
168177 <profile >
169178 <id >spring-boot3</id >
170179 <properties >
173182 </profile >
174183 <profile >
175184 <id >spring-boot4</id >
176- <activation >
177- <activeByDefault >true</activeByDefault >
178- </activation >
179185 <properties >
180186 <spring .version>4.0.0</spring .version>
181187 </properties >
Original file line number Diff line number Diff line change 44import java .util .function .Function ;
55
66import org .springframework .aop .interceptor .ExposeInvocationInterceptor ;
7- import org .springframework .data .jdbc .core .dialect .JdbcArrayColumns ;
7+ import org .springframework .data .jdbc .core .convert .JdbcArrayColumns ;
88import org .springframework .data .jdbc .core .dialect .JdbcDialect ;
99import org .springframework .data .relational .core .dialect .AbstractDialect ;
1010import org .springframework .data .relational .core .dialect .InsertRenderContext ;
@@ -131,6 +131,7 @@ public OrderByNullPrecedence orderByNullHandling() {
131131 }
132132
133133 @ Override
134+ @ SuppressWarnings ("removal" )
134135 public JdbcArrayColumns getArraySupport () {
135136 return JdbcArrayColumns .Unsupported .INSTANCE ;
136137 }
You can’t perform that action at this time.
0 commit comments