Skip to content

Commit c4ff216

Browse files
committed
Merge remote-tracking branch 'origin/master'
modified column_elem rule as tablename.NULL isn't valid.
2 parents 04fd2b5 + 12fdf0a commit c4ff216

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/tsql/TSqlParser.g4

+1-1
Original file line numberDiff line numberDiff line change
@@ -3041,7 +3041,7 @@ asterisk
30413041
;
30423042

30433043
column_elem
3044-
: (table_name '.')? (column_name=id | '$' IDENTITY | '$' ROWGUID | NULL) as_column_alias?
3044+
: ((table_name '.')? (column_name=id | '$' IDENTITY | '$' ROWGUID) | NULL) as_column_alias?
30453045
;
30463046

30473047
udt_elem

0 commit comments

Comments
 (0)