Added an explicit test against Hibernate 5.2.18.Final
[hibernate4-maven-plugin] / src / it / hib-test-5.2.18 / oracle.sql
diff --git a/src/it/hib-test-5.2.18/oracle.sql b/src/it/hib-test-5.2.18/oracle.sql
new file mode 100644 (file)
index 0000000..38caf32
--- /dev/null
@@ -0,0 +1,10 @@
+
+    create table test_simple (
+        uuid varchar2(36 char) not null,
+        content clob,
+        created timestamp,
+        externalid varchar2(148 char),
+        sources varchar2(255 char),
+        primary key (uuid)
+    );
+create index idx_test_simple_tuple on test_simple (sources, uuid);