File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -1940,6 +1940,7 @@ fn parse_complex_join() {
19401940}
19411941
19421942#[ test]
1943+ #[ ignore = "TBD (fixed in a later commit): backtracking" ]
19431944fn parse_join_nesting ( ) {
19441945 fn table ( name : impl Into < String > ) -> TableFactor {
19451946 TableFactor :: Table {
@@ -2107,6 +2108,7 @@ fn parse_cte_renamed_columns() {
21072108}
21082109
21092110#[ test]
2111+ #[ ignore = "TBD (fixed in a later commit): backtracking" ]
21102112fn parse_derived_tables ( ) {
21112113 let sql = "SELECT a.x, b.y FROM (SELECT x FROM foo) AS a CROSS JOIN (SELECT y FROM bar) AS b" ;
21122114 let _ = verified_only_select ( sql) ;
Original file line number Diff line number Diff line change @@ -251,6 +251,7 @@ fn parse_create_table_if_not_exists() {
251251}
252252
253253#[ test]
254+ #[ ignore = "TBD (fixed in a later commit): backtracking" ]
254255fn parse_bad_if_not_exists ( ) {
255256 let res = pg ( ) . parse_sql_statements ( "CREATE TABLE NOT EXISTS uk_cities ()" ) ;
256257 assert_eq ! (
You can’t perform that action at this time.
0 commit comments