From 6199fba9f905ed8b7d448593b832bebe5d097dd3 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 22 Dec 2015 08:30:32 -0800 Subject: [PATCH] Add set_*_unique handlers to TransactLogHandler --- impl/transact_log_handler.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/impl/transact_log_handler.cpp b/impl/transact_log_handler.cpp index 2deba2fd..ed1630ca 100644 --- a/impl/transact_log_handler.cpp +++ b/impl/transact_log_handler.cpp @@ -304,6 +304,8 @@ public: bool set_link(size_t col, size_t row, size_t, size_t) { return mark_dirty(row, col); } bool set_null(size_t col, size_t row) { return mark_dirty(row, col); } bool nullify_link(size_t col, size_t row, size_t) { return mark_dirty(row, col); } + bool set_int_unique(size_t col, size_t row, int_fast64_t) { return mark_dirty(row, col); } + bool set_string_unique(size_t col, size_t row, StringData) { return mark_dirty(row, col); } // Doesn't change any data bool optimize_table() { return true; }