We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3357d2 commit 56b5c03Copy full SHA for 56b5c03
src/alasqlparser.jison
@@ -1256,7 +1256,8 @@ Column
1256
| Literal DOT AT Literal
1257
{ $$ = new yy.Column({columnid: '@'+$4, tableid: $1});}
1258
// Standalone INSERTED/DELETED are treated as regular identifiers (lowercase)
1259
- // when not followed by DOT, allowing use as column/table names
+ // when not followed by DOT, allowing use as column/table names.
1260
+ // Lowercase matches SQL case-insensitive identifier behavior.
1261
| INSERTED
1262
{ $$ = new yy.Column({columnid: 'inserted'});}
1263
| DELETED
0 commit comments