diff options
-rw-r--r-- | src/reconcile/rec_write.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/reconcile/rec_write.c b/src/reconcile/rec_write.c index 18e8df4918c..b69ca00de92 100644 --- a/src/reconcile/rec_write.c +++ b/src/reconcile/rec_write.c @@ -5675,10 +5675,10 @@ __rec_row_leaf_insert(WT_SESSION_IMPL *session, WT_RECONCILE *r, WT_INSERT *ins) session, r, WT_INSERT_KEY_SIZE(ins))); /* - * Turn off prefix compression until a full key is - * written into the new page. + * Turn off prefix and suffix compression until a full + * key is written into the new page. */ - r->key_pfx_compress = false; + r->key_pfx_compress = r->key_sfx_compress = false; continue; } |