Add MaskedValueBlock#9
Merged
Merged
Conversation
Block filters now simply returns a masked value block Add filter to position block
Contributor
Author
|
Updated for review feed back (which you can see here dain/trino@7196a79#commitcomment-1747165) |
Contributor
|
looks good |
billonahill
pushed a commit
to billonahill/presto
that referenced
this pull request
Dec 17, 2015
Changing HiveSplitManager to start HiveSplitLoader as session user
miniway
pushed a commit
to miniway/presto_legacy
that referenced
this pull request
Oct 30, 2018
Add presto-parser required by presto-cli
ajaygeorge
added a commit
to ajaygeorge/presto
that referenced
this pull request
Sep 23, 2020
yyang52
pushed a commit
to yyang52/presto
that referenced
this pull request
Jul 19, 2021
Enable Cider JNI
Leziak
pushed a commit
to Leziak/presto
that referenced
this pull request
Apr 9, 2025
# This is the 1st commit message: [native] Add a test group for async data cache e2e tests. # This is the commit message prestodb#2: [native] Advance velox. # This is the commit message prestodb#3: Fix error when describing a nonexistent table # This is the commit message prestodb#4: [native] test modification. # This is the commit message prestodb#5: Changes to enable ssl/tls in hms Co-authored-by: Arin Mathew <arin.mathew1@ibm.com> Changes to move ssl related properties to seperate class # This is the commit message prestodb#6: [native] Add tests for UUID type # This is the commit message prestodb#7: Reintroduced json_extract to generate canonicalized output (prestodb#24879) ## Description The original pull request [prestodb#24614](prestodb#24614) incorrectly compares canonicalizedJsonExtract and legacyJsonCast in the equals function of an object. This issue can be seen in the code [here](https://github.com/prestodb/presto/pull/24614/files#diff-e921c5d186f9d5daa836bc7330f52caf8c1b84d19cf42288d5a8a7c9a6d2a5d5R156). As a result, whenever a SQL function requires caching, the cache is never hit, leading to the creation of new SQL function objects repeatedly. This behavior eventually causes an OOM error in the JVM metaspace. and eventually this error led to UER SEV. After the problematic comparison was updated and tested through shadow cluster by @rschlussel , we are confident that the issue has been resolved in this PR. Therefore, we plan to bring back the json canonicalized extract ## Motivation and Context Reintroduced json_extract to generate canonicalized output ## Impact <!---Describe any public API or user-facing feature change or any performance impact--> low impact ## Test Plan <!---Please fill in how you tested your change--> N/A ## Contributor checklist - [x] Please make sure your submission complies with our [contributing guide](https://github.com/prestodb/presto/blob/master/CONTRIBUTING.md), in particular [code style](https://github.com/prestodb/presto/blob/master/CONTRIBUTING.md#code-style) and [commit standards](https://github.com/prestodb/presto/blob/master/CONTRIBUTING.md#commit-standards). - [x] PR description addresses the issue accurately and concisely. If the change is non-trivial, a GitHub Issue is referenced. - [x] Documented new properties (with its default value), SQL syntax, functions, or other functionality. - [x] If release notes are required, they follow the [release notes guidelines](https://github.com/prestodb/presto/wiki/Release-Notes-Guidelines). - [x] Adequate tests were added if applicable. - [x] CI passed. ## Release Notes Please follow [release notes guidelines](https://github.com/prestodb/presto/wiki/Release-Notes-Guidelines) and fill in the release notes below. ``` == NO RELEASE NOTE == ``` # This is the commit message prestodb#8: Reuse JoinType in IndexJoinNode Reuse JoinType instead of creating IndexJoinNode's own. JoinType is already part of Prestissimo protocol. Adding IndexJoinNode with another JoinType would cause naming conflict. # This is the commit message prestodb#9: Add jaro-winkler implementation, documentation and tests # This is the commit message prestodb#10: Add documentation for Iceberg support in PrestoCPP # This is the commit message prestodb#11: Add memory pool debug regex # This is the commit message prestodb#12: doc on hive csv limitations # This is the commit message prestodb#13: Add support for S3 WebIdentity authentication # This is the commit message prestodb#14: use com.facebook.airlift:security in presto-hive-metastore # This is the commit message prestodb#15: [native] Advance Velox # This is the commit message prestodb#16: [native] Add protocol for index lookup join plan # This is the commit message prestodb#17: [native] Add sidecar and sidecar plugin documentation
anlowee
referenced
this pull request
in anlowee/presto
Jun 9, 2025
33 tasks
jja725
added a commit
to jja725/presto
that referenced
this pull request
Mar 19, 2026
- #1: getLatestVersion now uses cache instead of opening throwaway Dataset - #2: Add bounds check for version > Integer.MAX_VALUE before intValue() - #3: Add thread-safety documentation for cached Dataset objects - prestodb#4: Add requireNonNull for tablePath and namespaceHolder in FragmentScannerFactory - prestodb#5: Remove dead code openDatasetDirect() - prestodb#6: Remove dead code getOptionalDatasetVersion() - prestodb#7: Remove premature userIdentity parameter from cache key - prestodb#8: Make getReadOptions() private (only used internally) - prestodb#9: Tests now use versioned table handle from getTableHandle() - prestodb#10: Add @AfterMethod with namespaceHolder.shutdown() to prevent resource leaks - prestodb#12: Use explicit invalidateAll(keys) instead of removeIf on asMap()
jja725
added a commit
to jja725/presto
that referenced
this pull request
Mar 30, 2026
- #1: getLatestVersion now uses cache instead of opening throwaway Dataset - #2: Add bounds check for version > Integer.MAX_VALUE before intValue() - #3: Add thread-safety documentation for cached Dataset objects - prestodb#4: Add requireNonNull for tablePath and namespaceHolder in FragmentScannerFactory - prestodb#5: Remove dead code openDatasetDirect() - prestodb#6: Remove dead code getOptionalDatasetVersion() - prestodb#7: Remove premature userIdentity parameter from cache key - prestodb#8: Make getReadOptions() private (only used internally) - prestodb#9: Tests now use versioned table handle from getTableHandle() - prestodb#10: Add @AfterMethod with namespaceHolder.shutdown() to prevent resource leaks - prestodb#12: Use explicit invalidateAll(keys) instead of removeIf on asMap()
jja725
added a commit
to jja725/presto
that referenced
this pull request
Apr 1, 2026
- Add tableId to equals/hashCode in LanceTableHandle and LanceWritableTableHandle (#1, prestodb#5) - Add logging to exception handlers in getTableMetadata and getColumnHandles instead of silently swallowing (#2, #3) - Cap Arrow allocator at 8 GB instead of unbounded (prestodb#4) - Return ImmutableMap from getStorageOptionsForTable (prestodb#8) - Document $ delimiter choice for parent prefix (prestodb#9) - Make prestoSchemaToLanceNamespace and addParentPrefix package-private (prestodb#10) - Validate lance.root is set when impl=dir (prestodb#11) - Move lance dependency versions to root pom dependencyManagement (prestodb#12) - Clean up namespace entry if Dataset.create fails (prestodb#7) - Add comments to KNOWN_CONFIG_PROPERTIES explaining sync requirement (prestodb#6) - Add TestLanceNamespaceHolder with tests for multi-level namespace and parent prefix behavior Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
jja725
added a commit
to jja725/presto
that referenced
this pull request
Apr 23, 2026
- #1: getLatestVersion now uses cache instead of opening throwaway Dataset - #2: Add bounds check for version > Integer.MAX_VALUE before intValue() - #3: Add thread-safety documentation for cached Dataset objects - prestodb#4: Add requireNonNull for tablePath and namespaceHolder in FragmentScannerFactory - prestodb#5: Remove dead code openDatasetDirect() - prestodb#6: Remove dead code getOptionalDatasetVersion() - prestodb#7: Remove premature userIdentity parameter from cache key - prestodb#8: Make getReadOptions() private (only used internally) - prestodb#9: Tests now use versioned table handle from getTableHandle() - prestodb#10: Add @AfterMethod with namespaceHolder.shutdown() to prevent resource leaks - prestodb#12: Use explicit invalidateAll(keys) instead of removeIf on asMap()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Block filters now simply returns a masked value block
Add filter to position block