Omega359 closed issue #13784: sql result discrepency with sqlite, postgres and
duckdb bug #3
URL: https://github.com/apache/datafusion/issues/13784
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to th
Omega359 commented on issue #13784:
URL: https://github.com/apache/datafusion/issues/13784#issuecomment-2678954366
Closed as fixed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific com
Omega359 commented on issue #13784:
URL: https://github.com/apache/datafusion/issues/13784#issuecomment-2585310683
```sql
CREATE TABLE tab0(col0 INTEGER, col1 INTEGER, col2 INTEGER);
INSERT INTO tab0 VALUES(97,1,99);
INSERT INTO tab0 VALUES(15,81,47);
INSERT INTO tab0 VALUES(87,21
Omega359 commented on issue #13784:
URL: https://github.com/apache/datafusion/issues/13784#issuecomment-2585310572
After re-generating the .slt files to change REAL -> FLOAT8 this and another
similar error is the only blocker I think to having the full test suite
complete without failures.
jonahgao commented on issue #13784:
URL: https://github.com/apache/datafusion/issues/13784#issuecomment-2560545696
If
[fail_on_overflow](https://github.com/apache/datafusion/blob/e718c1a5c5770c071c9c2e14a7681a7f1a2f3f23/datafusion/physical-expr/src/expressions/binary.rs#L88)
is enabled, Dat
Omega359 opened a new issue, #13784:
URL: https://github.com/apache/datafusion/issues/13784
### Describe the bug
This is an odd one that I'm unsure what to make of it
```sql
CREATE TABLE tab0(col0 INTEGER, col1 INTEGER, col2 INTEGER);
INSERT INTO tab0 VALUES(97,1,99);
I