forked from taozhi8833998/node-sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser.all.js
More file actions
33 lines (32 loc) · 1.05 KB
/
parser.all.js
File metadata and controls
33 lines (32 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Import pre-generated parsers from lib/parser/
// These are generated by running: gulp render && gulp generate
import { parse as athena } from '../lib/parser/athena'
import { parse as bigquery } from '../lib/parser/bigquery'
import { parse as db2 } from '../lib/parser/db2'
import { parse as flinksql } from '../lib/parser/flinksql'
import { parse as hive } from '../lib/parser/hive'
import { parse as mysql } from '../lib/parser/mysql'
import { parse as mariadb } from '../lib/parser/mariadb'
import { parse as noql } from '../lib/parser/noql'
import { parse as postgresql } from '../lib/parser/postgresql'
import { parse as redshift } from '../lib/parser/redshift'
import { parse as sqlite } from '../lib/parser/sqlite'
import { parse as transactsql } from '../lib/parser/transactsql'
import { parse as snowflake } from '../lib/parser/snowflake'
import { parse as trino } from '../lib/parser/trino'
export default {
athena,
bigquery,
db2,
flinksql,
hive,
mysql,
mariadb,
noql,
postgresql,
redshift,
snowflake,
sqlite,
transactsql,
trino,
}