sqlite3-parser: box the create table body

This commit is contained in:
Jussi Saurio
2025-02-09 12:42:53 +02:00
parent d177f6195b
commit 358fda2ec7
5 changed files with 5 additions and 5 deletions

View File

@@ -112,7 +112,7 @@ pub enum Stmt {
/// table name
tbl_name: QualifiedName,
/// table body
body: CreateTableBody,
body: Box<CreateTableBody>,
},
/// `CREATE TRIGGER`
CreateTrigger {