Snowflake: Add support for CONNECT_BY_ROOT (#1780)

This commit is contained in:
tomershaniii 2025-04-29 09:44:19 +03:00 committed by GitHub
parent 4e392f5c07
commit 2b5bdcef0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 107 additions and 20 deletions

View file

@ -3020,9 +3020,12 @@ fn parse_hex_string_introducer() {
distinct: None,
top: None,
top_before_distinct: false,
projection: vec![SelectItem::UnnamedExpr(Expr::IntroducedString {
introducer: "_latin1".to_string(),
value: Value::HexStringLiteral("4D7953514C".to_string())
projection: vec![SelectItem::UnnamedExpr(Expr::Prefixed {
prefix: Ident::from("_latin1"),
value: Expr::Value(
Value::HexStringLiteral("4D7953514C".to_string()).with_empty_span()
)
.into(),
})],
from: vec![],
lateral_views: vec![],