ISSUE-1147: Add support for MATERIALIZED CTEs (#1148)

Co-authored-by: Andrew Repp <arepp@cloudflare.com>
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
This commit is contained in:
Andrew Repp 2024-02-29 06:54:36 -06:00 committed by GitHub
parent 57113a9344
commit 0c5f6fbf81
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 65 additions and 9 deletions

View file

@ -5589,6 +5589,7 @@ fn parse_recursive_cte() {
},
query: Box::new(cte_query),
from: None,
materialized: None,
};
assert_eq!(with.cte_tables.first().unwrap(), &expected);
}