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
No description provided.
The text was updated successfully, but these errors were encountered:
Should be this time #477 commit, incidentally fix this issue. So this problem can theoretically be turned off
postgres=# create table numeric_test2(empno numeric(4,0), sal numeric(7,2)); CREATE TABLE postgres=# insert into numeric_test2 values(7369,800.00); INSERT 0 1 postgres=# select * from numeric_test2; empno | sal -------+-------- 7369 | 800.00 (1 row) postgres=# select count(*) from numeric_test2 where empno >= 0.25; count ------- 1 (1 row) postgres=# select count(*) from numeric_test2 where sal >= 0.25; count ------- 1 (1 row) postgres=# select * from numeric_test2 where sal >= 0.25; empno | sal -------+-------- 7369 | 800.00 (1 row)
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: