summaryrefslogtreecommitdiff
path: root/spring-jdbc/src/test/resources/org/springframework/jdbc/datasource/embedded/db-schema-block-comments.sql
diff options
context:
space:
mode:
Diffstat (limited to 'spring-jdbc/src/test/resources/org/springframework/jdbc/datasource/embedded/db-schema-block-comments.sql')
-rw-r--r--spring-jdbc/src/test/resources/org/springframework/jdbc/datasource/embedded/db-schema-block-comments.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/spring-jdbc/src/test/resources/org/springframework/jdbc/datasource/embedded/db-schema-block-comments.sql b/spring-jdbc/src/test/resources/org/springframework/jdbc/datasource/embedded/db-schema-block-comments.sql
new file mode 100644
index 00000000..b0a89733
--- /dev/null
+++ b/spring-jdbc/src/test/resources/org/springframework/jdbc/datasource/embedded/db-schema-block-comments.sql
@@ -0,0 +1,9 @@
+{*
+ these are custom block comments
+*}
+drop table T_TEST if exists;
+
+{*
+ these are custom block comments
+*}
+create table T_TEST (NAME varchar(50) not null); \ No newline at end of file