Have you read the Contributing Guidelines on issues?
Please confirm if bug report does NOT exists already ?
Describe the problem
When a table field contains bit type execute sql "select * into outfile" will cause Instance crashed
Expected behavior
The program can export files normally
How To Reproduce
- create table
CREATE TABLE bit_test ( a int(11) DEFAULT 0, b bit(9) DEFAULT NULL );
- insert data:
INSERT INTO bit_test VALUES (1,B'1101100');
- export data
select * into outfile '/tmp/bit_test_tbl' from bit_test;
then instance will crashed
Environment
centos 7 stonedb-5.7-dev
Are you interested in submitting a PR to solve the problem?
Have you read the Contributing Guidelines on issues?
Please confirm if bug report does NOT exists already ?
Describe the problem
When a table field contains bit type execute sql "select * into outfile" will cause Instance crashed
Expected behavior
The program can export files normally
How To Reproduce
CREATE TABLE bit_test ( a int(11) DEFAULT 0, b bit(9) DEFAULT NULL );INSERT INTO bit_test VALUES (1,B'1101100');select * into outfile '/tmp/bit_test_tbl' from bit_test;then instance will crashed
Environment
centos 7 stonedb-5.7-dev
Are you interested in submitting a PR to solve the problem?