CREATE DATABASE xxxx;

I am trying to create a database in manticore using create database command but it’s not working, please have a look below:

mysql> show databases;
±----------+
| Databases |
±----------+
| Manticore |
±----------+
1 row in set (0.00 sec)

mysql> create database test;
Query OK, 0 rows affected (0.00 sec)

mysql> show databases;
±----------+
| Databases |
±----------+
| Manticore |
±----------+
1 row in set (0.00 sec)

database related statements are just dummy for some client to work without drop errors. Manticore does not support such statements.

Okay, make sense. So, it is possible to create database in manticore? if not then what does Manticore represents when I run show databases; in mysql client

daemon returns some hardcoded reply

Okay! got it! thanks