mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-21 15:30:40 +00:00
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:
@@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user