Expands each element in an input array into an individual row. The values of the other columns in each input row are unchanged in each corresponding output row. You can specify multiple array columns ...
from sqlglot import parse_one sql = "SELECT ARRAY[1,2,3] && ARRAY[2,3,4] FROM table_xyz;" x = parse_one(sql, read='postgres') print(x) Traceback (most recent call ...