|
MariaDB [test]> create table t1 (id int) engine=columnstore;
|
ERROR 2013 (HY000): Lost connection to MySQL server during query
|
MariaDB [test]> create table t1 (id int) engine=columnstore;
|
ERROR 2006 (HY000): MySQL server has gone away
|
No connection. Trying to reconnect...
|
Connection id: 8
|
Current database: test
|
ERROR 1050 (42S01): Table 't1' already exists
|
MariaDB [test]> show tables;
|
+----------------+
|
| Tables_in_test |
|
+----------------+
|
| t1 |
|
+----------------+
|
1 row in set (0.000 sec)
|
MariaDB [test]> show create table t1;
|
+-------+---------------------------------------------------------------------------------------------+
|
| Table | Create Table |
|
+-------+---------------------------------------------------------------------------------------------+
|
| t1 | CREATE TABLE `t1` (
|
`id` int(11) DEFAULT NULL
|
) ENGINE=Columnstore DEFAULT CHARSET=latin1 |
|
+-------+---------------------------------------------------------------------------------------------+
|
1 row in set (0.000 sec)
|
MariaDB [test]> insert into t1 values (1);
|
ERROR 1815 (HY000): Internal error: Lost connection to DMLProc after getting a new client [2:InetStreamSocket::connect: connect() error: Permission denied to: InetStreamSocket: sd: 46 inet: 0.0.0.0 port: 8614 then InetStreamSock
|