feat: Allow sql parser to parse show-create-table statement (#347)

* feat: Add ShowCreateTable to Statement

* feat: Add ShowCreateTable to Statement

* feat: Add ShowCreateTable to Statement

* feat: Add ShowCreateTable to Statement

* feat: Add ShowCreateTable to Statement

* feat: Add ShowCreateTable to Statement

* feat: Add ShowCreateTable to Statement

* feat: Add ShowCreateTable to Statement

* feat: Add ShowCreateTable to Statement
This commit is contained in:
Sheng hui
2022-11-08 16:35:56 +08:00
committed by GitHub
parent a2f9b788f1
commit cff8fe4e0e
6 changed files with 76 additions and 4 deletions

View File

@@ -77,6 +77,9 @@ impl Instance {
Statement::ShowTables(stmt) => {
self.sql_handler.execute(SqlRequest::ShowTables(stmt)).await
}
Statement::ShowCreateTable(_stmt) => {
unimplemented!("SHOW CREATE TABLE is unimplemented yet");
}
}
}
}