CREATE TYPE position_type AS (
address TEXT,
lat FLOAT,
lon FLOAT
);
CREATE TABLE house (
id SERIAL PRIMARY KEY,
position position_type
);
INSERT INTO house (position) VALUES (('Some location', 0, 0));
It generates this schema:
But settings filters for address does not affect the generated SQL.
It would be great to be able to filter columns of composite types, or to remove the generation of these filters as they are misleading
With this example db:
It generates this schema:
But settings filters for
address
does not affect the generated SQL.It would be great to be able to filter columns of composite types, or to remove the generation of these filters as they are misleading