Skip to content

Commit 9b78cd3

Browse files
committed
MariaRocks port: MariaDB doesn't support SHOW ENGINE ROCKSDB TRANSACTION STATUS
Should we start supporting it?
1 parent c6dee75 commit 9b78cd3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

storage/rocksdb/ha_rocksdb.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3012,12 +3012,13 @@ static bool rocksdb_show_status(handlerton* hton,
30123012
str.append(buf);
30133013
res |= print_stats(thd, "Memory_Stats", "rocksdb", str, stat_print);
30143014
}
3015+
#ifdef MARIAROCKS_NOT_YET
30153016
else if (stat_type == HA_ENGINE_TRX)
30163017
{
30173018
/* Handle the SHOW ENGINE ROCKSDB TRANSACTION STATUS command */
30183019
res |= rocksdb_show_snapshot_status(hton, thd, stat_print);
30193020
}
3020-
3021+
#endif
30213022
return res;
30223023
}
30233024

0 commit comments

Comments
 (0)