Search before asking
Version
2.0.7
Describe the bug and provide the minimal reproduce step
使用C++ API时,如果SQL语句中第一个列类型是boolen类型则无法正确获取值,值为NULL
create storage group root.test;
insert into root.test(type_boolen) values(true);
insert into root.test(type_boolen) values(false);
使用C++ API执行以下语句并获取结果
select type_boolen,type_boolen from root.test;
What did you expect to see?
true,true
false,false
What did you see instead?
null,true
null,false
Anything else?
No response
Are you willing to submit a PR?