Vladimir Gapeyev

Results 7 comments of Vladimir Gapeyev

Looking into resolving this ticket uncovered that the current join evaluation framework only handles list-structured joins, not general tree-structured joins (Issue #1019). Furthermore, the processing of these linear join trees...

To expand on this a bit, there are many more places where IonSystem is used merely for parsing of atomic values. This may be worth handling in a few steps,...

Seeing `2E+1` as a decimal literal goes against the general custom of understanding it as a float, with the syntax for decimal literals customarily being `2d+1`. I am pointing at...

While true for these specific queries, the situation is more subtle in general. Consider variations of the above queries, ``` SELECT t.id, (SELECT max(num) FROM t) AS x FROM data...

Upon looking into this in more detail and implementation experience (see PR #1060), there have been additional obstacles and complications to the idea in the last paragraph of the previous...

It is likely that these examples are other instances of the problem described in #1002.

An update: There is a similar earlier analysis in #766.