File tree 2 files changed +0
-16
lines changed
2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -1001,8 +1001,6 @@ pub const RESERVED_FOR_TABLE_ALIAS: &[Keyword] = &[
1001
1001
Keyword :: ANTI ,
1002
1002
Keyword :: SEMI ,
1003
1003
Keyword :: RETURNING ,
1004
- Keyword :: ASOF ,
1005
- Keyword :: MATCH_CONDITION ,
1006
1004
// for MSSQL-specific OUTER APPLY (seems reserved in most dialects)
1007
1005
Keyword :: OUTER ,
1008
1006
Keyword :: SET ,
Original file line number Diff line number Diff line change @@ -2731,20 +2731,6 @@ fn asof_joins() {
2731
2731
"ON s.state = p.state " ,
2732
2732
"ORDER BY s.observed" ,
2733
2733
) ) ;
2734
-
2735
- // Test without explicit aliases
2736
- #[ rustfmt:: skip]
2737
- snowflake_and_generic ( ) . verified_query ( concat ! (
2738
- "SELECT * " ,
2739
- "FROM snowtime " ,
2740
- "ASOF JOIN raintime " ,
2741
- "MATCH_CONDITION (snowtime.observed >= raintime.observed) " ,
2742
- "ON snowtime.state = raintime.state " ,
2743
- "ASOF JOIN preciptime " ,
2744
- "MATCH_CONDITION (showtime.observed >= preciptime.observed) " ,
2745
- "ON showtime.state = preciptime.state " ,
2746
- "ORDER BY showtime.observed" ,
2747
- ) ) ;
2748
2734
}
2749
2735
2750
2736
#[ test]
You can’t perform that action at this time.
0 commit comments