mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-07 17:04:59 +00:00
Add support for Snowflake AT/BEFORE (#1667)
This commit is contained in:
parent
44df6d6f92
commit
5da702fc19
7 changed files with 48 additions and 12 deletions
|
@ -3051,3 +3051,10 @@ fn test_sql_keywords_as_select_item_aliases() {
|
|||
.is_err());
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_timetravel_at_before() {
|
||||
snowflake().verified_only_select("SELECT * FROM tbl AT(TIMESTAMP => '2024-12-15 00:00:00')");
|
||||
snowflake()
|
||||
.verified_only_select("SELECT * FROM tbl BEFORE(TIMESTAMP => '2024-12-15 00:00:00')");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue