CREATE TABLE test (
val1 JSON,
val2 JSONB
)
column_name,
data_type
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name = 'test';
Shows
column_name data_type
val1 json
val2 jsonb
/* Unknown datatype "JSONB" for "val2". Fall back to UNKNOWN. */JSONB data type not recognized.
JSONB data type should be recognized, it's functionally equivalent to JSON.
Add JSONB as valid datatype for PostgreSQL.
Just found this blocking problem, when creatign a table with jsonb type, column is UNKNOWN:

configuration order is jsonb type
same problem
same problem
Next build now supports JSONB columns:

However, not sure if editing such columns in the data grid or query grid fails, as it's binary data.
Most helpful comment
Next build now supports

JSONBcolumns:However, not sure if editing such columns in the data grid or query grid fails, as it's binary data.