aboutsummaryrefslogtreecommitdiffstats
path: root/tests/projects
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects')
-rw-r--r--tests/projects/plugins/project/src/plsql/has-issues.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/plugins/project/src/plsql/has-issues.sql b/tests/projects/plugins/project/src/plsql/has-issues.sql
new file mode 100644
index 00000000000..29a74b1d962
--- /dev/null
+++ b/tests/projects/plugins/project/src/plsql/has-issues.sql
@@ -0,0 +1,9 @@
+-- plsql:SingleLineCommentsSyntaxCheck
+/* single line comment */
+
+-- plsql:UpperCaseReservedWordsCheck
+create TABLE ut_suite (
+ id INTEGER, -- comment
+ -- plsql:CharVarchar
+ name char(1)
+);