-
### Bug description
Velox shows different behavior compared to Presto java
```
SELECT sum(c0) FILTER(WHERE c0), count(*) FILTER(WHERE c0), c1 from (values (CAST(10 AS BIGINT), 'a')) t(c0, c1) GR…
-
from https://datafusion.apache.org/
> DataFusion is an extensible query engine written in [Rust](http://rustlang.org/) that uses [Apache Arrow](https://arrow.apache.org/) as its in-memory format. D…
-
**Describe the bug**
The planner sometimes fails to generate a GPU plan because the timezone being set to a non-UTC. However, this does not seem always necessary.
**Steps/Code to reproduce bug**…
-
The issue:
As you noted, the value of p_0 is not correct in the output. The original value was 2.125, but the output shows 2.125000000000000200. The discrepancy is due to precision issues when working…
-
### Feature Request
| Q | A
|------------ | ------
| New Feature | yes
| RFC | no
| BC Break | no
#### Summary
```php
$queryBuilder->addWith('name', $this->cre…
-
Currently, `tree.WalkExpr` is not guaranteed to walk all nodes in a given expression tree. This is confusing and has led to bugs in the past, and also limits the usability of the logic. We should cons…
-
The SQLGetInfo function for the `SQL_STRING_FUNCTIONS` param returns the following information:
`SQL_FN_STR_CONCAT | SQL_FN_STR_INSERT | SQL_FN_STR_LEFT | SQL_FN_STR_LTRIM | SQL_FN_STR_LENGTH | SQL_F…
-
A recent change in #73762 ensures that a literal integer does not exceed the minimum or maximum value of its type. This caused a subtle regression in default expressions. The table below should be suc…
-
Some users complains that they do not want some rows' expression error prevent the whole query's processing and result.
### `TRY()` function
presto and trino do this
https://trino.io/docs/current/f…
-
Hello,
I'm using your library in a C# REST Api, using a SQL database (SQL SERVER).
I can't find in your documentation how to translate an RQL Expression from your library into a WHERE clause in SQL …