Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

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

steps:
Expand Down
372 changes: 184 additions & 188 deletions dist/quick-erd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/quick-erd.umd.cjs

Large diffs are not rendered by default.

14,661 changes: 7,337 additions & 7,324 deletions dist/quick-sql.js

Large diffs are not rendered by default.

47 changes: 24 additions & 23 deletions dist/quick-sql.umd.cjs

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion doc/user/quick-sql-grammar.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@
4. [Settings](#settings)
5. [Grammar](#grammar) -->

## Comments

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:
- 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.
- 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.

## Datatypes

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

Specifies the database version the syntax should be compatible with.
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.

### drop

Expand Down
Loading