Remove explicit transactions from export (#4610)

This commit is contained in:
Tobie Morgan Hitchcock 2024-08-26 13:24:06 +01:00 committed by GitHub
parent 5e43642c06
commit 050f7c577b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,13 +126,6 @@ impl Transaction {
chn.send(bytes!("")).await?; chn.send(bytes!("")).await?;
} }
} }
// Start transaction
chn.send(bytes!("-- ------------------------------")).await?;
chn.send(bytes!("-- TRANSACTION")).await?;
chn.send(bytes!("-- ------------------------------")).await?;
chn.send(bytes!("")).await?;
chn.send(bytes!("BEGIN TRANSACTION;")).await?;
chn.send(bytes!("")).await?;
// Records to be exported, categorised by the type of INSERT statement // Records to be exported, categorised by the type of INSERT statement
let mut records_normal: Vec<String> = let mut records_normal: Vec<String> =
Vec::with_capacity(*EXPORT_BATCH_SIZE as usize); Vec::with_capacity(*EXPORT_BATCH_SIZE as usize);
@ -193,13 +186,6 @@ impl Transaction {
} }
chn.send(bytes!("")).await?; chn.send(bytes!("")).await?;
} }
// Commit transaction
chn.send(bytes!("-- ------------------------------")).await?;
chn.send(bytes!("-- TRANSACTION")).await?;
chn.send(bytes!("-- ------------------------------")).await?;
chn.send(bytes!("")).await?;
chn.send(bytes!("COMMIT TRANSACTION;")).await?;
chn.send(bytes!("")).await?;
} }
} }
// Everything exported // Everything exported