File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/main/java/tech/ydb/jooq Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 131
131
<configuration >
132
132
<environmentVariables >
133
133
<TESTCONTAINERS_REUSE_ENABLE >true</TESTCONTAINERS_REUSE_ENABLE >
134
- <YDB_DOCKER_IMAGE >cr.yandex/yc/yandex-docker-local-ydb:trunk </YDB_DOCKER_IMAGE >
134
+ <YDB_DOCKER_IMAGE >cr.yandex/yc/yandex-docker-local-ydb:latest </YDB_DOCKER_IMAGE >
135
135
</environmentVariables >
136
136
</configuration >
137
137
</plugin >
Original file line number Diff line number Diff line change 14
14
import java .sql .Connection ;
15
15
16
16
public class YdbDslContext extends DefaultDSLContext {
17
+
18
+ public static final String YDB_QUOTE = "`" ;
19
+
17
20
public YdbDslContext () {
18
21
this (new DefaultConfiguration ());
19
22
}
@@ -72,6 +75,6 @@ private static Settings addRequiredParameters(Settings settings) {
72
75
}
73
76
74
77
private static VisitListener quoteListener () {
75
- return new CustomQuoteListener ("`" );
78
+ return new CustomQuoteListener (YDB_QUOTE );
76
79
}
77
80
}
You can’t perform that action at this time.
0 commit comments