Skip to content

Commit 5ac78a8

Browse files
committed
chore: bit_expr completed.
1 parent 6bcf038 commit 5ac78a8

File tree

3 files changed

+202
-25
lines changed

3 files changed

+202
-25
lines changed

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,20 @@
88

99
sql grammar follows https://dev.mysql.com/doc/refman/5.7/en/select.html
1010

11+
## unsupport currently
12+
13+
- Hexadecimal Literals as x'01af' X'01af', but 0x01af is supported.
14+
- keyword COLLATE.
15+
- parammarker: keyword PREPARE / EXECUTE / DEALLOCATE
16+
- variable: keyword SET / CREATE PROCEDURE / CREATE FUNCTION
17+
- identifier expr: ODBC escape syntax
18+
- matchexpr: Full-Text Search Functions. //to support
19+
- intervalexpr: Date INTERVAL keyword. //to support
20+
21+
note:
22+
this sql parser doesn't keep operator precedence currently (in bitExpr). it will be support later.
23+
it keep parser.parse and parse.stringify is stable.
24+
1125
## commonjs usage
1226

1327
`npm install --save js-sql-parser`

0 commit comments

Comments
 (0)