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
copy into table with an column identifier containing $ character like select t.$1,t.$2,t.$3 from @~/datafile.csv.gz t;
Although the feature seems to be snowflake specific, it cannot be implemented within snowflake dialect. It's because tokens starting with $ character are tokenized into Token::Placeholder. That's why parser's change is required.
According to documentation, Snowflake allows:
[<alias>.]$<file_col_num>[.<element>]
$
character likeselect t.$1,t.$2,t.$3 from @~/datafile.csv.gz t;
Although the feature seems to be snowflake specific, it cannot be implemented within snowflake dialect. It's because tokens starting with
$
character are tokenized intoToken::Placeholder
. That's why parser's change is required.Initial OpenLineage project issue: OpenLineage/OpenLineage#814
The text was updated successfully, but these errors were encountered: