create schema db_b_parser4;
set current_schema to 'db_b_parser4';
set dolphin.use_const_value_as_colname = false;
drop table if exists tb_db_b_parser_0001;
create table tb_db_b_parser_0001(a text(10),b tinytext,c mediumtext,d longtext);
drop table if exists tb_db_b_parser_0002;
create table tb_db_b_parser_0002(a decimal, b number, c dec, d numeric, e fixed);
\d tb_db_b_parser_0002
drop table if exists tb_default_float;
create table tb_default_float(a float4(10));
\d tb_default_float
drop table if exists tb_default_double;
create table tb_default_double(a double);
\d tb_default_double
drop table if exists tb_real_float;
create table tb_real_float(a real, b float);
\d tb_real_float
drop table if exists tb_db_b_parser_0002;
drop table if exists tb_default_float;
drop table if exists tb_default_double;
drop table if exists tb_real_float;
create table t1(123abc int);
create table t1(123 int);
create table t1(123 abc int);
create table 123(abc int);
create table 123abc(abc int);
create table 123 abc(abc int);
create table if not exists t1(123abc int);
create table if not exists t1(123 int);
create table if not exists t1(123 abc int);
create table if not exists 123(abc int);
create table if not exists 123abc(abc int);
create table if not exists 123 abc(abc int);
123abc;
select 0b01;
select 0b01+1;
select 1+0b01;
select 0b01 = b'01';
select 0b01+1 = b'01'+1;
select 1+0b01 = 1+b'01';
select 0b02;
select 0b2;
select 0b;
select 0bf;
select 0b0f;
drop schema db_b_parser4 cascade;
reset current_schema;