Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions gensrc/proto/internal_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -831,6 +831,9 @@ message PRequestBlockDesc {
repeated uint32 row_id = 5;
optional PTupleDescriptor desc = 6;
repeated uint32 column_idxs = 7;
// Numeric value of ROW_VERSION. Keep this as uint32 so a receiver can detect and reject a
// future version that is unknown to its current binary instead of treating it as version 0.
optional uint32 row_location_version = 8 [default = 0];
}

message PTopNLazyMaterializationFileCacheStats {
Expand Down
7 changes: 5 additions & 2 deletions thirdparty/download-thirdparty.sh
Original file line number Diff line number Diff line change
Expand Up @@ -765,10 +765,13 @@ fi

# Apply Doris lance-c patches.
if [[ " ${TP_ARCHIVES[*]} " =~ " LANCE_C " ]]; then
if [[ "${LANCE_C_SOURCE}" == "lance-c-0.1.8" ]]; then
if [[ "${LANCE_C_SOURCE}" == "lance-c-0.1.9" ]]; then
cd "${TP_SOURCE_DIR}/${LANCE_C_SOURCE}"
if [[ ! -f "${PATCHED_MARK}" ]]; then
patch -p1 <"${TP_PATCH_DIR}/lance-c-0.1.8-pr-69.patch"
patch --batch --forward --reject-file=- --fuzz=0 --no-backup-if-mismatch -s \
-p1 <"${TP_PATCH_DIR}/lance-c-0.1.9-pr-73.patch"
patch --batch --forward --reject-file=- --fuzz=0 --no-backup-if-mismatch -s \
-p1 <"${TP_PATCH_DIR}/lance-c-0.1.9-pr-74.patch"
touch "${PATCHED_MARK}"
fi
cd -
Expand Down
Loading
Loading