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
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/test/java/org/springframework/data/jdbc/core/JdbcAggregateTemplateIntegrationTests.java
+27
Original file line number
Diff line number
Diff line change
@@ -573,6 +573,25 @@ public void saveAndLoadAnEntityWithListOfDouble() {
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/test/resources/org.springframework.data.jdbc.core/JdbcAggregateTemplateIntegrationTests-h2.sql
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/test/resources/org.springframework.data.jdbc.core/JdbcAggregateTemplateIntegrationTests-hsql.sql
+6
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,12 @@ CREATE TABLE DOUBLE_LIST_OWNER
60
60
DIGITS DOUBLE PRECISION ARRAY[10]
61
61
);
62
62
63
+
CREATETABLEFLOAT_LIST_OWNER
64
+
(
65
+
ID BIGINT GENERATED BY DEFAULT AS IDENTITY (START WITH 1) PRIMARY KEY,
66
+
DIGITS FLOAT ARRAY[10]
67
+
);
68
+
63
69
CREATETABLECHAIN4
64
70
(
65
71
FOUR BIGINT GENERATED BY DEFAULT AS IDENTITY (START WITH 40) PRIMARY KEY,
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/test/resources/org.springframework.data.jdbc.core/JdbcAggregateTemplateIntegrationTests-postgres.sql
0 commit comments