mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-12-23 11:12:51 +00:00
Snowflake: Add support for CONNECT_BY_ROOT (#1780)
This commit is contained in:
parent
4e392f5c07
commit
2b5bdcef0b
8 changed files with 107 additions and 20 deletions
|
|
@ -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![],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue