sqlite3-parser: box large members of Upsert

This commit is contained in:
Jussi Saurio
2025-02-08 18:06:45 +02:00
parent f341474fee
commit ac7f9d67b7
2 changed files with 6 additions and 6 deletions

View File

@@ -1769,9 +1769,9 @@ pub enum TransactionType {
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Upsert {
/// conflict targets
pub index: Option<UpsertIndex>,
pub index: Option<Box<UpsertIndex>>,
/// `DO` clause
pub do_clause: UpsertDo,
pub do_clause: Box<UpsertDo>,
/// next upsert
pub next: Option<Box<Upsert>>,
}