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
Inconsistent behavior of psql types.
CREATE TABLE example( id SERIAL4 PRIMARY KEY NOT NULL ); -- name: test :many SELECT id FROM example;
The generated table model is
data class Example( val id: Any )
Would expect the type to be Int instead of Any.
Maybe affects other serial or float types I have not tested this yet. For e.g. int4 works ok.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Inconsistent behavior of psql types.
The generated table model is
Would expect the type to be Int instead of Any.
Maybe affects other serial or float types I have not tested this yet.
For e.g. int4 works ok.
The text was updated successfully, but these errors were encountered: