Skip to content

Commit 8b10090

Browse files
author
Zoran Cvetkov
committed
try to fix graft prune test
1 parent 86b835d commit 8b10090

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

store/postgres/src/relational/prune.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -252,12 +252,13 @@ impl TablePair {
252252
"src" => src_nsp.as_str(), "error" => e.to_string());
253253
}
254254

255+
// TODO: check if this is needed
255256
// Make sure the vid sequence
256257
// continues from where it was
257-
writeln!(
258-
query,
259-
"select setval('{dst_nsp}.{vid_seq}', nextval('{src_nsp}.{vid_seq}'));"
260-
)?;
258+
// writeln!(
259+
// query,
260+
// "select setval('{dst_nsp}.{vid_seq}', nextval('{src_nsp}.{vid_seq}'));"
261+
// )?;
261262

262263
writeln!(query, "drop table {src_qname};")?;
263264
writeln!(query, "alter table {dst_qname} set schema {src_nsp}")?;

0 commit comments

Comments
 (0)