File tree 4 files changed +7
-7
lines changed
hibernate-dialect/src/main/java/tech/ydb/hibernate/dialect
hibernate-dialect-v5/src/main/java/tech/ydb/hibernate/dialect
liquibase-dialect/src/main/java/tech/ydb/liquibase/database
spring-data-dialect/src/main/java/tech/ydb/data/core/dialect
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ public String getCurrentTimestampSelectString() {
176
176
177
177
@ Override
178
178
public String getForUpdateString () {
179
- throw new UnsupportedOperationException ("YDB don't support FOR UPDATE statement" );
179
+ throw new UnsupportedOperationException ("YDB does not support FOR UPDATE statement" );
180
180
}
181
181
182
182
@ Override
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ public String getCurrentTimestampSelectString() {
235
235
236
236
@ Override
237
237
public String getForUpdateString () {
238
- throw new UnsupportedOperationException ("YDB don't support FOR UPDATE statement" );
238
+ throw new UnsupportedOperationException ("YDB does not support FOR UPDATE statement" );
239
239
}
240
240
241
241
@ Override
Original file line number Diff line number Diff line change @@ -119,23 +119,23 @@ public boolean supportsTablespaces() {
119
119
}
120
120
121
121
/**
122
- * YDB don't support foreign key
122
+ * YDB does not support foreign key
123
123
*/
124
124
@ Override
125
125
public boolean supportsForeignKeyDisable () {
126
126
return true ;
127
127
}
128
128
129
129
/**
130
- * YDB don't support sequences
130
+ * YDB does not support sequences (yet)
131
131
*/
132
132
@ Override
133
133
public boolean supportsSequences () {
134
134
return false ;
135
135
}
136
136
137
137
/**
138
- * YDB don't support auto increment
138
+ * YDB does not support auto increment (yet)
139
139
*/
140
140
@ Override
141
141
public boolean supportsAutoIncrement () {
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public Position getClausePosition() {
42
42
43
43
private static final LockClause LOCK_CLAUSE = new LockClause () {
44
44
public String getLock (LockOptions lockOptions ) {
45
- throw new UnsupportedOperationException ("YDB don't support pessimistic locks" );
45
+ throw new UnsupportedOperationException ("YDB does not support pessimistic locks" );
46
46
}
47
47
48
48
public LockClause .Position getClausePosition () {
@@ -76,7 +76,7 @@ public Set<Class<?>> simpleTypes() {
76
76
@ Override
77
77
public InsertRenderContext getInsertRenderContext () {
78
78
return () -> {
79
- throw new UnsupportedOperationException ("YDB don't support VALUES (DEFAULT) statement" );
79
+ throw new UnsupportedOperationException ("YDB does not support VALUES (DEFAULT) statement" );
80
80
};
81
81
}
82
82
You can’t perform that action at this time.
0 commit comments