You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i handled sql like below, 'b.col1' is recognized as a table name in Parser.tables:
sql:"from table1 a left join table2 b on ifnull(a.col1, '') = ifnull(b.col1, '')"
When I commented out the lines 989 and 990 of code in the picture, the above-mentioned problem was solved.:
The text was updated successfully, but these errors were encountered:
When i handled sql like below, 'b.col1' is recognized as a table name in Parser.tables:
sql:"from table1 a left join table2 b on ifnull(a.col1, '') = ifnull(b.col1, '')"
When I commented out the lines 989 and 990 of code in the picture, the above-mentioned problem was solved.:
The text was updated successfully, but these errors were encountered: