Skip to content

Commit 70dec33

Browse files
Merge pull request #64 from oracle/2024/4/12
Resolves issues #65, #67, #84
2 parents 8be42f7 + f6cdae1 commit 70dec33

File tree

16 files changed

+13155
-8997
lines changed

16 files changed

+13155
-8997
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [16.x, 18.x]
19+
node-version: [18.x, 22.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:

dist/quick-erd.js

Lines changed: 184 additions & 188 deletions
Large diffs are not rendered by default.

dist/quick-erd.umd.cjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/quick-sql.js

Lines changed: 7337 additions & 7324 deletions
Large diffs are not rendered by default.

dist/quick-sql.umd.cjs

Lines changed: 24 additions & 23 deletions
Large diffs are not rendered by default.

doc/user/quick-sql-grammar.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@
4646
4. [Settings](#settings)
4747
5. [Grammar](#grammar) -->
4848

49+
## Comments
50+
51+
A comment can appear between any keywords, parameters, or punctuation marks in a statement. You can include a comment in a statement in two ways:
52+
- Begin the comment with a slash and an asterisk (/*). Proceed with the text of the comment. This text can span multiple lines. End the comment with an asterisk and a slash (*/). The opening and terminating characters need not be separated from the text by a space or a line break.
53+
- Begin the comment with -- (two hyphens). Proceed with the text of the comment. This text cannot extend to a new line. End the comment with a line break.
54+
4955
## Datatypes
5056

5157
<!-- markdownlint-disable MD013 -->
@@ -271,7 +277,7 @@ setting to override this default.
271277
**Possible Values**: `11g`, `12c`, `19c`, `21c`, `23c`
272278
**Default Value**: `19c`
273279

274-
Specifies the database version the syntax should be compatible with.
280+
Specifies the database version the syntax should be compatible with. The version string is reduced to major version number. Therefore, 23, 23c, 23ai, and 23.1.1 are all legitimate values equivalent to 21.
275281

276282
### drop
277283

0 commit comments

Comments
 (0)