File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -627,7 +627,7 @@ class TableAlias {
627627 * @returns {String[] } - Table alias. Empty string if not found.
628628 */
629629 static getTableAlias ( tableName , ast ) {
630- let tableAlias = [ ] ;
630+ const tableAlias = [ ] ;
631631 const ucTableName = tableName . toUpperCase ( ) ;
632632
633633 tableAlias . push ( ...TableAlias . getTableAliasFromJoin ( ucTableName , ast ) ) ;
Original file line number Diff line number Diff line change @@ -641,7 +641,7 @@ class TableAlias {
641641 * @returns {String[] } - Table alias. Empty string if not found.
642642 */
643643 static getTableAlias ( tableName , ast ) {
644- let tableAlias = [ ] ;
644+ const tableAlias = [ ] ;
645645 const ucTableName = tableName . toUpperCase ( ) ;
646646
647647 tableAlias . push ( ...TableAlias . getTableAliasFromJoin ( ucTableName , ast ) ) ;
You can’t perform that action at this time.
0 commit comments