Lukas Eder

Results 645 issues of Lukas Eder

See this discussion here: https://twitter.com/tagir_valeev/status/684710644998782976 An untyped `Tuple` should be collected, which exposes its internal `Object[]`

T: Enhancement
P: Medium

When a window function spans `RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW`, then some optimisations can be performed in case the window function is a associative function, such as `SUM()`,...

T: Enhancement
P: Medium

As correctly stated by Tagir Valeev, the current implementation of `Seq.duplicate()` isn't thread safe: http://stackoverflow.com/questions/23860533/copy-a-stream-to-avoid-stream-has-already-been-operated-upon-or-closed-java-8/25961951?noredirect=1#comment53095315_25961951 This is relevant when the stream duplicates are consumed on different threads, which is (ignoring...

T: Defect
P: Medium

It would be nice to implement accumulators / collectors that implement SQL's `GROUPING SET` semantics by duplicating data into possible grouping set permutations. Possibly, this is only feasible via #105

T: Enhancement
P: Medium

There is currently no fluent way of handling exceptions in a `Stream`. While `Stream` extends `AutoCloseable` and provides an `onClose(Runnable)` hook for actions that are to be taken before the...

T: Enhancement
P: Medium

As can be seen in this question (http://stackoverflow.com/a/28083591/521799), people will want to implement SQL via Streams and lambdas, but they will terribly fail as: - IDEs are not at all...

T: Enhancement
P: Medium