We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c19978 commit 32a3470Copy full SHA for 32a3470
1 file changed
src/dialect/snowflake.rs
@@ -1546,9 +1546,7 @@ fn parse_select_item_for_data_load(
1546
}
1547
1548
// A trailing `::` means this is a cast expression (e.g.
1549
- // `$1:"col"::NUMBER(38,0)`), not a stage-load-select-item. Bail so
1550
- // `maybe_parse` rewinds and the caller falls through to
1551
- // `parse_select_item`, which handles the cast correctly.
+ // `$1:"col"::NUMBER(38,0)`), not a stage-load-select-item.
1552
if matches!(parser.peek_token_ref().token, Token::DoubleColon) {
1553
return parser.expected("stage load select item", parser.peek_token());
1554
0 commit comments