Skip to content

Commit c8758ee

Browse files
committedJul 31, 2019
release: v1.2.0 & append fix for typo.
1 parent 9bb81e5 commit c8758ee

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed
 

‎CHANGELOG

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
1.0.6 add MIT license.
22
1.0.7 fix alias for identifier #16 , pr: #17
33
1.0.8 support union grammar follow: https://dev.mysql.com/doc/refman/8.0/en/union.html
4+
1.1.0 hotfix: Remove unused import
5+
1.2.0 fix typo "refrence" to "reference" #24

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-sql-parser",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "",
55
"main": "./dist/parser/sqlParser.js",
66
"scripts": {

‎src/sqlParser.jison

+4-4
Original file line numberDiff line numberDiff line change
@@ -490,12 +490,12 @@ for_update_lock_in_share_mode_opt
490490
;
491491
selectDataSetOpt
492492
: { $$ = {} }
493-
| FROM table_refrences partitionOpt where_opt group_by_opt having_opt order_by_opt limit_opt procedure_opt for_update_lock_in_share_mode_opt
493+
| FROM table_references partitionOpt where_opt group_by_opt having_opt order_by_opt limit_opt procedure_opt for_update_lock_in_share_mode_opt
494494
{ $$ = { from: $2, partition: $3, where: $4, groupBy: $5, having: $6, orderBy: $7, limit: $8, procedure: $9, updateLockMode: $10 } }
495495
;
496-
table_refrences
496+
table_references
497497
: escaped_table_reference { $$ = { type: 'TableReferences', value: [ $1 ] } }
498-
| table_refrences ',' escaped_table_reference %prec TABLE_REF_COMMA { $$ = $1; $1.value.push($3); }
498+
| table_references ',' escaped_table_reference %prec TABLE_REF_COMMA { $$ = $1; $1.value.push($3); }
499499
;
500500
escaped_table_reference
501501
: table_reference { $$ = { type: 'TableReference', value: $1 } }
@@ -583,5 +583,5 @@ index_hint
583583
table_factor
584584
: identifier partitionOpt aliasOpt index_hint_list_opt { $$ = { type: 'TableFactor', value: $1, partition: $2, alias: $3.alias, hasAs: $3.hasAs, indexHintOpt: $4 } }
585585
| '(' selectClause ')' aliasOpt { $$ = { type: 'SubQuery', value: $2, alias: $4.alias, hasAs: $4.hasAs } }
586-
| '(' table_refrences ')' { $$ = $2; $$.hasParentheses = true }
586+
| '(' table_references ')' { $$ = $2; $$.hasParentheses = true }
587587
;

0 commit comments

Comments
 (0)