Skip to content

Conversation

@prestodb-ci
Copy link
Collaborator

@prestodb-ci prestodb-ci commented Nov 25, 2025

Test PR for branch staging-7740ffc40-pr with head 7740ffc

@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci prestodb-ci deleted the staging-1777c7523-pr branch November 26, 2025 01:29
Signed-off-by: Yuan <[email protected]>

Set ccache maximum size to 1G

Remove sed command from Gluten workflow

Removed a sed command that replaces 'oap-project' with 'IBM' in the get-velox.sh script.

Modify get-velox.sh to change 'ibm' to 'ibm-xxx'

Update the get-velox.sh script to replace 'ibm' with 'ibm-xxx'.

Update sed command to be case-insensitive

Update gluten.yml

fix iceberg unit test

Signed-off-by: Yuan <[email protected]>

Update gluten.yml

Enable enhanced features in gluten build script

Update cache keys for Gluten workflow
@FelixYBW FelixYBW restored the staging-1777c7523-pr branch November 27, 2025 09:14
@FelixYBW FelixYBW reopened this Nov 27, 2025
@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

@FelixYBW FelixYBW changed the title fix: Avoid TSAN data race during cache entry initialization (#15623) refactor: Extract common BaseSerializedPage API (#15626) Dec 3, 2025
@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci prestodb-ci changed the title refactor: Extract common BaseSerializedPage API (#15626) fix(build): Ambiguity caused by long literal (#15670) Dec 3, 2025
@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

@prestodb-ci
Copy link
Collaborator Author

rui-mo and others added 28 commits January 8, 2026 19:44
Alchemy-item: (ID = 917) [OAP] Support struct schema evolution matching by name commit 1/1 - c816a39
Alchemy-item: (ID = 883) [OAP] [13620] Allow reading integers into smaller-range types  commit 1/1 - 4cae2f5
… outer join

Signed-off-by: Yuan <[email protected]>

Alchemy-item: (ID = 882) [OAP] [11771] Fix smj result mismatch issue commit 1/1 - ada7dd2
Alchemy-item: (ID = 954) [OAP] [14722] Fix memory leak caused by asynchronous prefetch commit 1/1 - aedf6b0
…15509)"

This reverts commit d791d84.

Alchemy-item: (ID = 983) Iceberg staging hub commit 1/18 - ec46102
This reverts commit fd0682b.

Alchemy-item: (ID = 983) Iceberg staging hub commit 2/18 - f7d02da
…#15461)"

This reverts commit 7576f4e.

Alchemy-item: (ID = 983) Iceberg staging hub commit 3/18 - d7d8655
…facebookincubator#15477)"

This reverts commit 1895711.

Alchemy-item: (ID = 983) Iceberg staging hub commit 4/18 - aee2a67
…incubator#15443)"

This reverts commit 51d4a94.

Alchemy-item: (ID = 983) Iceberg staging hub commit 5/18 - 9ed4008
…15423)"

This reverts commit 600524b.

Alchemy-item: (ID = 983) Iceberg staging hub commit 6/18 - 710ba8d
The function toValues removes duplicated values from the vector and
return them in a std::vector. It was used to build an InPredicate. It
will be needed for building NOT IN filters for Iceberg equality delete
read as well, therefore moving it from velox/functions/prestosql/InPred
icate.cpp to velox/type/Filter.h. This commit also renames it to
deDuplicateValues to make it easier to understand.

Alchemy-item: (ID = 983) Iceberg staging hub commit 7/18 - 8ff8f5b
This commit introduces EqualityDeleteFileReader, which is used to read
Iceberg splits with equality delete files. The equality delete files
are read to construct domain filters or filter functions, which then
would be evaluated in the base file readers.

When there is only one equality delete field, and when that field is
an Iceberg identifier field, i.e. non-floating point primitive types,
the values would be converted to a list as a NOT IN domain filter,
with the NULL treated separately. This domain filter would then be
pushed to the ColumnReaders to filter our unwanted rows before they
are read into Velox vectors. When the equality delete column is a
nested column, e.g. a sub-column in a struct, or the key in a map,
such column may not be in the base file ScanSpec. We need to add/remove
these subfields to/from the SchemaWithId and ScanSpec recursively if
they were not in the ScanSpec already. A test is also added for such
case.

If there are more than one equality delete field, or the field is not
an Iceberg identifier field, the values would be converted to a typed
expression in the conjunct of disconjunts form. This expression would
be evaluated as the remaining filter function after the rows are read
into the Velox vectors. Note that this only works for Presto now as
the "neq" function is not registered by Spark. See https://github.com/
facebookincubator/issues/12667

Note that this commit only supports integral types. VARCHAR and
VARBINARY need to be supported in future commits (see
facebookincubator#12664).

Co-authored-by: Naveen Kumar Mahadevuni <[email protected]>

# Conflicts:
#	velox/connectors/hive/iceberg/tests/IcebergReadTest.cpp

# Conflicts:
#	velox/dwio/common/ScanSpec.h

# Conflicts:
#	velox/type/Filter.h

Alchemy-item: (ID = 983) Iceberg staging hub commit 8/18 - 117b7f9
# Conflicts:
#	velox/connectors/hive/HiveConnectorUtil.cpp

Alchemy-item: (ID = 983) Iceberg staging hub commit 9/18 - fd66e1e
Co-authored-by: Chengcheng Jin <[email protected]>

Alchemy-item: (ID = 983) Iceberg staging hub commit 10/18 - d501ccc
Alchemy-item: (ID = 983) Iceberg staging hub commit 11/18 - 157015b
# Conflicts:
#	velox/dwio/parquet/writer/Writer.cpp
#	velox/dwio/parquet/writer/Writer.h
#	velox/dwio/parquet/writer/arrow/ArrowSchema.cpp
#	velox/dwio/parquet/writer/arrow/ArrowSchema.h
#	velox/dwio/parquet/writer/arrow/Metadata.cpp

Alchemy-item: (ID = 983) Iceberg staging hub commit 12/18 - 6d3be8c
Alchemy-item: (ID = 983) Iceberg staging hub commit 13/18 - 306dd1c
Alchemy-item: (ID = 983) Iceberg staging hub commit 14/18 - 5a76f95
Alchemy-item: (ID = 983) Iceberg staging hub commit 15/18 - ea55d14
Alchemy-item: (ID = 983) Iceberg staging hub commit 16/18 - 973a1e4
Alchemy-item: (ID = 983) Iceberg staging hub commit 17/18 - bfbd027
Alchemy-item: (ID = 983) Iceberg staging hub commit 18/18 - 836264c
Signed-off-by: Yuan <[email protected]>

Alchemy-item: (ID = 906) fix: Adding daily tests commit 1/2 - e2eb2c6
we can cache ccache on every build even on failure, since ibm/velox is
always incremental build

Alchemy-item: (ID = 906) fix: Adding daily tests commit 2/2 - 0899ddc
Signed-off-by: Yuan <[email protected]>

Alchemy-item: (ID = 956) fix: Remove website folder to bypass the security issues commit 1/1 - 42debeb
Signed-off-by: Yuan <[email protected]>

Alchemy-item: (ID = 902) fix: Disable flaky test temporary commit 1/1 - 0bc5c50
1
Alchemy-item: (ID = 988) Add fileNameGenerator to the constructor of IcebergInsertTableHandle commit 1/1 - a5f7e46
@prestodb-ci prestodb-ci changed the title Pass string buffers from encodings in selective reader (#15912) Avoid wasting a thread when building a hash table in parallel (#15919) Jan 8, 2026
@prestodb-ci prestodb-ci force-pushed the staging-1777c7523-pr branch from 1745050 to c203fd5 Compare January 8, 2026 19:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.