|
MariaDB [(none)]> install soname 'ha_rocksdb';
|
Query OK, 0 rows affected, 1 warning (0.06 sec)
|
MariaDB [(none)]> use test;
|
Database changed
|
MariaDB [test]> create table t1(i int) engine rocksdb;
|
Query OK, 0 rows affected (0.00 sec)
|
|
MariaDB [test]> show create table t1;
|
+-------+-----------------------------------------------------------------------
|
-----------------+
|
| Table | Create Table
|
|
|
+-------+-----------------------------------------------------------------------
|
-----------------+
|
| t1 | CREATE TABLE `t1` (
|
`i` int(11) DEFAULT NULL
|
) ENGINE=ROCKSDB DEFAULT CHARSET=latin1 |
|
+-------+-----------------------------------------------------------------------
|
-----------------+
|
1 row in set (0.00 sec)
|