We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbfe2ca commit 8af5c32Copy full SHA for 8af5c32
src/parser.rs
@@ -2025,6 +2025,7 @@ impl Parser {
2025
// ----- DDL -----
2026
fn parse_create_schema_statement(&mut self, semicolon: bool) -> BQ2CSTResult<Node> {
2027
let mut create = self.construct_node(NodeType::CreateSchemaStatement)?;
2028
+ // TODO allow external schema
2029
self.next_token()?; // -> SCHEMA
2030
create.push_node("what", self.construct_node(NodeType::Keyword)?);
2031
if self.get_token(1)?.is("IF") {
src/parser/tests/tests_ddl.rs
@@ -74,6 +74,7 @@ what:
74
",
75
0,
76
)),
77
+ // TODO add test of external schema
78
// ----- CREATE SEARCH INDEX statement -----
79
Box::new(SuccessTestCase::new(
80
"\
0 commit comments