When creating a table with a 'BOOLEAN' column,
this column does show in Flamerobin, but with the datatype "(1)".
This strange definition also shows in the generated DDL
This is the table definition
CREATE TABLE PRICE_LIST
(
NAME VARCHAR(100),
PRICE_EX DECIMAL(14,2),
PRICE_VAT DECIMAL(14,2),
PRICE_INC COMPUTED BY (price_ex + price_vat),
DONE BOOLEAN
);
See attached file for FlameRobin view

When creating a table with a 'BOOLEAN' column,
this column does show in Flamerobin, but with the datatype "(1)".
This strange definition also shows in the generated DDL
This is the table definition
CREATE TABLE PRICE_LIST
(
NAME VARCHAR(100),
PRICE_EX DECIMAL(14,2),
PRICE_VAT DECIMAL(14,2),
PRICE_INC COMPUTED BY (price_ex + price_vat),
DONE BOOLEAN
);
See attached file for FlameRobin view
