We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86b835d commit 8b10090Copy full SHA for 8b10090
store/postgres/src/relational/prune.rs
@@ -252,12 +252,13 @@ impl TablePair {
252
"src" => src_nsp.as_str(), "error" => e.to_string());
253
}
254
255
+ // TODO: check if this is needed
256
// Make sure the vid sequence
257
// continues from where it was
- writeln!(
258
- query,
259
- "select setval('{dst_nsp}.{vid_seq}', nextval('{src_nsp}.{vid_seq}'));"
260
- )?;
+ // writeln!(
+ // query,
+ // "select setval('{dst_nsp}.{vid_seq}', nextval('{src_nsp}.{vid_seq}'));"
261
+ // )?;
262
263
writeln!(query, "drop table {src_qname};")?;
264
writeln!(query, "alter table {dst_qname} set schema {src_nsp}")?;
0 commit comments