Skip to content

Commit 8379284

Browse files
committed
Fix issue with incorrect format of fieldReferences
1 parent b7ad2e3 commit 8379284

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

selectStatementListener.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class Listener extends SQLSelectParserListener {
9292

9393
ctx.originalName = identifier[identifier.length - 1];
9494
ctx.identifier = identifier.map(removeQuotes);
95-
this.fieldReferences.push(ctx.identifier);
95+
this.fieldReferences.push(ctx.identifier[ctx.identifier.length - 1]);
9696
}
9797

9898
exitFromClause(ctx) {

0 commit comments

Comments
 (0)