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
are valid in many SQL versions, yet the second query isn't supported, as can be seen in the code, in the file process_sql.py:
def scan_alias(toks):
"""Scan the index of 'as' and build the map for all alias"""
as_idxs = [idx for idx, tok in enumerate(toks) if tok == 'as']
alias = {}
for idx in as_idxs:
alias[toks[idx+1]] = toks[idx-1]
return alias
The text was updated successfully, but these errors were encountered:
As can be seen in this link, both cases:
are valid in many SQL versions, yet the second query isn't supported, as can be seen in the code, in the file process_sql.py:
The text was updated successfully, but these errors were encountered: