Commit 9b78cd3c authored by Sergei Petrunia's avatar Sergei Petrunia

MariaRocks port: MariaDB doesn't support SHOW ENGINE ROCKSDB TRANSACTION STATUS

Should we start supporting it?
parent c6dee757
...@@ -3012,12 +3012,13 @@ static bool rocksdb_show_status(handlerton* hton, ...@@ -3012,12 +3012,13 @@ static bool rocksdb_show_status(handlerton* hton,
str.append(buf); str.append(buf);
res |= print_stats(thd, "Memory_Stats", "rocksdb", str, stat_print); res |= print_stats(thd, "Memory_Stats", "rocksdb", str, stat_print);
} }
#ifdef MARIAROCKS_NOT_YET
else if (stat_type == HA_ENGINE_TRX) else if (stat_type == HA_ENGINE_TRX)
{ {
/* Handle the SHOW ENGINE ROCKSDB TRANSACTION STATUS command */ /* Handle the SHOW ENGINE ROCKSDB TRANSACTION STATUS command */
res |= rocksdb_show_snapshot_status(hton, thd, stat_print); res |= rocksdb_show_snapshot_status(hton, thd, stat_print);
} }
#endif
return res; return res;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment