Skip to content

Commit 56b5c03

Browse files
Copilotmathiasrw
andcommitted
Enhance comment clarity for casing behavior
Co-authored-by: mathiasrw <1063454+mathiasrw@users.noreply.github.com>
1 parent a3357d2 commit 56b5c03

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/alasqlparser.jison

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1256,7 +1256,8 @@ Column
12561256
| Literal DOT AT Literal
12571257
{ $$ = new yy.Column({columnid: '@'+$4, tableid: $1});}
12581258
// Standalone INSERTED/DELETED are treated as regular identifiers (lowercase)
1259-
// when not followed by DOT, allowing use as column/table names
1259+
// when not followed by DOT, allowing use as column/table names.
1260+
// Lowercase matches SQL case-insensitive identifier behavior.
12601261
| INSERTED
12611262
{ $$ = new yy.Column({columnid: 'inserted'});}
12621263
| DELETED

0 commit comments

Comments
 (0)