Fix usage of put_page_image in save_xlog_dbase_create

This commit is contained in:
Konstantin Knizhnik
2021-07-10 16:17:25 +03:00
parent 4cc41ea971
commit 7898aff499

View File

@@ -579,7 +579,7 @@ fn save_xlog_dbase_create(timeline: &dyn Timeline, lsn: Lsn, rec: &XlCreateDatab
debug!("copying block {:?} to {:?}", src_key, dst_key);
timeline.put_page_image(dst_key, lsn, content, false)?;
timeline.put_page_image(dst_key, lsn, content, true)?;
num_blocks_copied += 1;
}