Skip to content
Merged
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
13 changes: 13 additions & 0 deletions thirdparty/download-thirdparty.sh
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,19 @@ if [[ " ${TP_ARCHIVES[*]} " =~ " PAIMON_CPP " ]]; then
echo "Finished patching ${PAIMON_CPP_SOURCE}"
fi

# Patch lance-c for fragment-scoped nearest-neighbor search and row-ID-based fetching.
if [[ " ${TP_ARCHIVES[*]} " =~ " LANCE_C " ]]; then
if [[ "${LANCE_C_SOURCE}" == "lance-c-0.1.6" ]]; then
cd "${TP_SOURCE_DIR}/${LANCE_C_SOURCE}"
if [[ ! -f "${PATCHED_MARK}" ]]; then
patch -p1 <"${TP_PATCH_DIR}/lance-c-0.1.6-doris.patch"
touch "${PATCHED_MARK}"
fi
cd -
fi
echo "Finished patching ${LANCE_C_SOURCE}"
fi

if [[ " ${TP_ARCHIVES[*]} " =~ " CCTZ " ]] ; then
cd $TP_SOURCE_DIR/$CCTZ_SOURCE
if [[ ! -f "$PATCHED_MARK" ]] ; then
Expand Down
Loading
Loading