diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-07-05 11:14:58 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-07-05 16:51:11 +0200 |
commit | fd4e7efe96826908cf443fb567e89e8dc2e6dd51 (patch) | |
tree | bf4df5c91d8efd71872d39238a4bb3bcf68471ce /tests/projects | |
parent | 44023b33d97d874e79ecd11efe745f004063e8b7 (diff) | |
download | sonarqube-fd4e7efe96826908cf443fb567e89e8dc2e6dd51.tar.gz sonarqube-fd4e7efe96826908cf443fb567e89e8dc2e6dd51.zip |
Re-enable and complete PLI and PLSQL tests
Diffstat (limited to 'tests/projects')
-rw-r--r-- | tests/projects/plugins/project/src/plsql/has-issues.sql | 9 |
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) +); |