You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for Id generation in Oracle using quoted identifiers.
The latest Oracle JDBC driver properly supports returning of generated ids,
both in batches and for quoted identifiers.
This allows us to now support this feature.
Closes#1666
Original pull request: #1667
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/convert/IdGeneratingBatchInsertStrategy.java
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/test/java/org/springframework/data/jdbc/core/AbstractJdbcAggregateTemplateIntegrationTests.java
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/test/java/org/springframework/data/jdbc/core/JdbcAggregateTemplateSchemaIntegrationTests.java
-1
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,6 @@ public class JdbcAggregateTemplateSchemaIntegrationTests {
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/test/java/org/springframework/data/jdbc/repository/AbstractJdbcRepositoryLookUpStrategyTests.java
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/test/resources/org.springframework.data.jdbc.core/JdbcAggregateTemplateIntegrationTests-oracle.sql
+2-2
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ CREATE TABLE MANUAL
51
51
(
52
52
"id2"NUMBER GENERATED by default onnullas IDENTITY PRIMARY KEY,
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/test/resources/org.springframework.data.jdbc.core/JdbcAggregateTemplateSchemaIntegrationTests-oracle.sql
+2-1
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,9 @@
1
1
DROPUSER OTHER CASCADE;
2
2
3
-
4
3
CREATEUSEROTHER;
5
4
5
+
ALTERUSER OTHER QUOTA UNLIMITED ON USERS;
6
+
6
7
CREATETABLEOTHER.DUMMY_ENTITY
7
8
(
8
9
ID NUMBER GENERATED by default onnullas IDENTITY PRIMARY KEY,
0 commit comments