ohadzeliger
ohadzeliger
This is a result of the PR (https://github.com/FoundationDB/fdb-record-layer/pull/1381) for streaming aggregation.
For troubleshooting Cascades planning process
See `GeophileQueryTest` for example, it requires files to be downloaded (Gradle script that downloads is `fdb-record-layer-spatial.gradle`). When the download fails, the test fails. This can be improved, for example, by...
Some new code (e.g. LinkedIdentityMap and LinkedIdentitySet) should be placed in a `util` package, together with some other existing utility classes.
RecordQueryUnorderedDistinctPlan.executePlan() (Line 104) adds a record to the “seen” list even if it skipped. This means that the record will not make it into the result even if it is...
As part of the plan cache effort, adding a query hash kind that takes into account literals and ignores parameter markers. The idea is that plans can be cached for...
Refactor the remote fetch indexEntriesToIndexRecords method to use an internal method, and expose a new buildSingleRecord method externally. The new method, `buildSingleRecord(@Nonnull FDBIndexedRawRecord indexedRawRecord)`, can now be used externally, for...
In order to support external manipulation of records (for example in the process of handling a cursor of raw records), we need the ability to construct a single IndexedRecord from...