Skip to content

Commit 8af5c32

Browse files
committed
add TODO comments
1 parent cbfe2ca commit 8af5c32

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/parser.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2025,6 +2025,7 @@ impl Parser {
20252025
// ----- DDL -----
20262026
fn parse_create_schema_statement(&mut self, semicolon: bool) -> BQ2CSTResult<Node> {
20272027
let mut create = self.construct_node(NodeType::CreateSchemaStatement)?;
2028+
// TODO allow external schema
20282029
self.next_token()?; // -> SCHEMA
20292030
create.push_node("what", self.construct_node(NodeType::Keyword)?);
20302031
if self.get_token(1)?.is("IF") {

src/parser/tests/tests_ddl.rs

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ what:
7474
",
7575
0,
7676
)),
77+
// TODO add test of external schema
7778
// ----- CREATE SEARCH INDEX statement -----
7879
Box::new(SuccessTestCase::new(
7980
"\

0 commit comments

Comments
 (0)