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
31 lines (30 loc) · 974 Bytes
/
parser.all.js
File metadata and controls
31 lines (30 loc) · 974 Bytes
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
import { parse as athena } from '../pegjs/athena.pegjs'
import { parse as bigquery } from '../pegjs/bigquery.pegjs'
import { parse as db2 } from '../pegjs/db2.pegjs'
import { parse as flinksql } from '../pegjs/flinksql.pegjs'
import { parse as hive } from '../pegjs/hive.pegjs'
import { parse as mysql } from '../pegjs/mysql.pegjs'
import { parse as mariadb } from '../pegjs/mariadb.pegjs'
import { parse as noql } from '../pegjs/noql.pegjs'
import { parse as postgresql } from '../pegjs/postgresql.pegjs'
import { parse as redshift } from '../pegjs/redshift.pegjs'
import { parse as sqlite } from '../pegjs/sqlite.pegjs'
import { parse as transactsql } from '../pegjs/transactsql.pegjs'
import { parse as snowflake } from '../pegjs/snowflake.pegjs'
import { parse as trino } from '../pegjs/trino.pegjs'
export default {
athena,
bigquery,
db2,
flinksql,
hive,
mysql,
mariadb,
noql,
postgresql,
redshift,
snowflake,
sqlite,
transactsql,
trino,
}