Fixed NullPointerException, when dialect is specified in properties-file
[hibernate4-maven-plugin] / src / it / properties / h2.sql
diff --git a/src/it/properties/h2.sql b/src/it/properties/h2.sql
new file mode 100644 (file)
index 0000000..9569fa6
--- /dev/null
@@ -0,0 +1,12 @@
+
+    drop table test_simple if exists;
+
+    create table test_simple (
+        uuid varchar(36) not null,
+        content clob,
+        externalid varchar(148),
+        sources varchar(255),
+        primary key (uuid)
+    );
+
+    create index idx_test_simple_tuple on test_simple (sources, uuid);