From 3f43400e3ab5fd58eb94f64dc433e670f1a5c3ef Mon Sep 17 00:00:00 2001 From: wangzihuacool Date: Thu, 20 Oct 2022 13:34:31 +0000 Subject: [PATCH] add-rocksdb-as-transactional-engine --- go/base/context.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/go/base/context.go b/go/base/context.go index f3fe712..bdfe156 100644 --- a/go/base/context.go +++ b/go/base/context.go @@ -427,6 +427,10 @@ func (this *MigrationContext) IsTransactionalTable() bool { { return true } + case "rocksdb": + { + return true + } } return false }