-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add byte[] backed tuple and block implementations #2
Merged
Conversation
This file contains 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
Add Slice code from level db Tuples and blocks only support fixed with data
looks good enough |
losipiuk
pushed a commit
to losipiuk/prestodb
that referenced
this pull request
Nov 17, 2015
losipiuk
pushed a commit
to losipiuk/prestodb
that referenced
this pull request
Dec 1, 2015
billonahill
pushed a commit
to billonahill/presto
that referenced
this pull request
Dec 8, 2015
…gParquetColumns Append nulls for missing values in Parquet.
Merged
piyushnarang
added a commit
to piyushnarang/presto
that referenced
this pull request
Aug 10, 2018
Criteo specific travis yaml updates
cryptoe
added a commit
to cryptoe/presto
that referenced
this pull request
Oct 4, 2018
# This is the 1st commit message: # This is a combination of 8 commits. # This is the 1st commit message: # This is a combination of 6 commits. # This is the 1st commit message: # This is a combination of 3 commits. # This is the 1st commit message: # This is a combination of 6 commits. # This is the 1st commit message: # This is a combination of 3 commits. # This is the 1st commit message: # This is a combination of 2 commits. # This is the 1st commit message: # This is a combination of 2 commits. # This is the 1st commit message: # This is a combination of 4 commits. # This is the 1st commit message: # This is a combination of 2 commits. # This is the 1st commit message: # This is a combination of 3 commits. # This is the 1st commit message: # This is a combination of 4 commits. # This is the 1st commit message: WIP: Ranger integration with presto. Please change local file path # This is the commit message prestodb#2: Making information schema skippable # This is the commit message prestodb#3: minor improvements # This is the commit message prestodb#4: Fix truncated print for ProjectionNode in PlanPrinter # This is the commit message prestodb#2: Cleanup all temporary files when writing sorted Hive tables # This is the commit message prestodb#3: Prevent nulls fraction to be negative in subtractColumnStats # This is the commit message prestodb#2: Better estimate NDVs and range in subtractColumnStats When there is too little rows per distinct values to be substracted, then both original range and NDVs should be preserved. # This is the commit message prestodb#2: Mark subtractColumnStats as @deprecated as it semantics is undefined # This is the commit message prestodb#3: Dispose resources in WorkProcessorUtils when they are no longer needed # This is the commit message prestodb#4: Add WorkProcessor#transformProcessor method This methods allows to write more streamlined transformations of the processor itself, e.g: processor.transformProcessor(WorkProcessorUtils::flatten) # This is the commit message prestodb#2: Fix error message in QuerySessionSupplier # This is the commit message prestodb#2: Rename singleExpression to standaloneExpression This better reflects the intent of the parsing rule. # This is the commit message prestodb#2: Improve parsing error message The name appears as the prefix of some errors. E.g., xxxxx is too large (stack overflow while parsing) "path specification" reads better than "pathSpec" # This is the commit message prestodb#3: Log raised during error handling It was logging the parsing exception, not the exception that could occur while handling the parsing error due to a bug in the implementation. # This is the commit message prestodb#2: Tighten assertion for parsing failure in TestSqlEnvironmentConfig # This is the commit message prestodb#3: Implement recursion-free ATN simulator The new implementation tracks all the possible states the ATN can be in in a single queue instead of recursing when processing sub-rules. This vastly simplifies the code, makes it easier to reason about and debug. It also fixes a latent bug where some contexts were not being visited, which missed some candidate tokens. # This is the commit message prestodb#4: Raise requried Java version to 8u151 Some test cases failed due to JDK MethodHandle bug in 8u92. These tests passed in 8u151. # This is the commit message prestodb#5: Track origin column for fields This is needed to ensure we only check column access privileges for origin columns. # This is the commit message prestodb#6: Don't check column access for aliases Fixes queries that have column aliases defined in the query like `SELECT col1 AS my_alias FROM table`. Previously, we checked if a user had permission to access "col1" and "my_alias". Now we only check "col1". # This is the commit message prestodb#2: Add wrapped Boolean benchmarks Benchmark Mode Cnt Score Error Units BenchmarkBoxedBoolean.booleanEquals thrpt 30 4596.863 ± 26.817 ops/ms BenchmarkBoxedBoolean.booleanEqualsNotNull thrpt 30 4484.421 ± 43.358 ops/ms BenchmarkBoxedBoolean.identity thrpt 30 4610.811 ± 85.104 ops/ms BenchmarkBoxedBoolean.object thrpt 30 4558.072 ± 68.325 ops/ms BenchmarkBoxedBoolean.primitive thrpt 30 4450.140 ± 52.258 ops/ms BenchmarkBoxedBoolean.unboxing thrpt 30 4506.205 ± 26.116 ops/ms # This is the commit message prestodb#3: Implement equality comparisons projection benchmark Bechmark creates an expression with 100 comparisions concatenated with OR and executes them on a single 1MB page with 10 BIGINT channels. Before change: Benchmark Mode Cnt Score Error Units BenchmarkEqualsOperator.processPage avgt 15 5164.793 ± 29.110 us/op After change: Benchmark Mode Cnt Score Error Units BenchmarkEqualsOperator.processPage avgt 15 5142.010 ± 59.681 us/op # This is the commit message prestodb#2: Implement nullable EQUAL and NOT_EQUAL for ARRAY type # This is the commit message prestodb#3: Change equals semantincs for null in MAP Make it comptible with current ARRAY equals semantics If the key sets are different - return false. If the key sets are the same - compare the values as if they were arrays sorted by the keys. # This is the commit message prestodb#4: Implement nullable EQUAL and NOT_EQUAL for ROW type # This is the commit message prestodb#5: Support IN predicate for complex type values with nulls # This is the commit message prestodb#6: Allow alternate implementations of HiveMetadata Extracting an interface allows implementations that use delegation rather than subclasses. # This is the commit message prestodb#2: Fix handling of thread interruption in JDBC driver When using sockets created using SocketChannel, OkHttp handles thread interruption differently and does not restore the interrupt status. # This is the commit message prestodb#3: Add per table column_ranges system table in Raptor # This is the commit message prestodb#4: Fix Hive smoke test when running in parallel Use a different table name for testCreateEmptyBucketedPartition and testInsertPartitionedBucketedTable to avoid test failures when running in parallel. # This is the commit message prestodb#5: Separate EXCEEDED_MEMORY_LIMIT error into local and global # This is the commit message prestodb#6: Fix test failures due to ExceededMemoryLimitException message # This is the commit message prestodb#7: Fix more test failures due to ExceededMemoryLimitException message A few tests failures are not fixed by 47355c8 # This is the commit message prestodb#8: Replace usage of deprecated TreeTraverser # This is the commit message prestodb#2: Add missing column to verifier SQL documentation
imakhlin
pushed a commit
to imakhlin/presto
that referenced
this pull request
Apr 3, 2019
debug print
Closed
This was referenced Oct 6, 2020
Merged
yyang52
pushed a commit
to yyang52/presto
that referenced
this pull request
Jul 19, 2021
[POAE7-1216] convert filter push down info in json format
MnO2
pushed a commit
to MnO2/presto
that referenced
this pull request
Jan 28, 2023
Failure recovery cleaned up
Closed
aaneja
pushed a commit
to aaneja/presto
that referenced
this pull request
Aug 15, 2023
Update q02.sql
MnO2
pushed a commit
to MnO2/presto
that referenced
this pull request
Sep 26, 2023
MnO2
pushed a commit
to MnO2/presto
that referenced
this pull request
Oct 1, 2023
MnO2
pushed a commit
to MnO2/presto
that referenced
this pull request
Oct 30, 2023
sabbasani
referenced
this pull request
in sabbasani/presto
Jun 19, 2024
Mariamalmesfer
pushed a commit
to Mariamalmesfer/presto
that referenced
this pull request
Oct 10, 2024
# This is the 1st commit message: okhttp to 4.12.0 # This is the commit message prestodb#2: upgrade okie to 4.12.0 # This is the commit message prestodb#3: upgrade okie to 4.12.0 # This is the commit message prestodb#4: upgrade okie to 4.12.0 # This is the commit message prestodb#5: upgrade okie to 4.12.0 # This is the commit message prestodb#6: upgrade okie to 4.12.0
bibith4
added a commit
to bibith4/presto
that referenced
this pull request
Oct 30, 2024
# This is the 1st commit message: Changes to make clone methods final for security This reverts commit 92699d2. #Changes to make clone methods final for security Revert "Merge branch 'static_cve_fix_clone_final' of github.com:bibith4/presto into static_cve_fix_clone_final" This reverts commit c9b3b7d, reversing changes made to 87ce038. # This is the commit message prestodb#2: Changes to make clone methods final for security
25 tasks
bibith4
added a commit
to bibith4/presto
that referenced
this pull request
Dec 13, 2024
This is the commit message prestodb#2: Update commons-dbcp2 version to fix common vulnerabilities and exposures Update commons-dbcp2 version to fix common vulnerabilities and exposures
duxiao1212
added a commit
to duxiao1212/presto
that referenced
this pull request
Dec 13, 2024
# This is the 1st commit message: Add session properties for scale writer query configs # This is the commit message prestodb#2: Add session properties to coordinator
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.
The code only supportes fixed with columns , and has some hacks to get width information into the operators, but it does generally show the direction.