We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With this example db:
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.
address
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: