Spatio-Temporal-Lab / start-db-achive

GNU General Public License v3.0
16 stars 9 forks source link

int、long、float、double数值类型字段查询数据报类型转换的错 #285

Closed ihongyang closed 2 years ago

ihongyang commented 2 years ago

示例SQL create table t_int (int1 int); create table t_integer (int2 integer); create table t_long (long3 long); create table t_float (float4 float); create table t_double (double5 double); insert into t_int values (123); insert into t_integer values (123); insert into t_long values (1234567890); insert into t_float values (123.456); insert into t_double values (123456.789); select from t_int; select from t_integer; select from t_long; select from t_float; select * from t_double;

image

jimolonely commented 2 years ago

@ihongyang 可以复测了

ihongyang commented 2 years ago

复测通过 image