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
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ def preprocess(file_path, output_temp_path):
lines = file.readlines()
modified_lines = []
for line in lines:
modified_line = re.sub(r"\s*,*\s*drift\.recursive_reference=true\s*", "", line)
modified_line = re.sub(
r"\s*,*\s*drift\.recursive_reference\s*=\s*true\s*,*\s*", "", line
)
modified_line = re.sub(r"\(\s*\)$", "", modified_line)
modified_lines.append(modified_line)
with open(output_temp_path, "w") as file:
Expand Down
2 changes: 1 addition & 1 deletion presto-native-execution/scripts/setup-centos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export NPROC=${NPROC:-$(getconf _NPROCESSORS_ONLN)}
function install_presto_deps_from_package_managers {
dnf install -y maven java clang-tools-extra jq perl-XML-XPath
# This python version is installed by the Velox setup scripts
pip install regex pyyaml chevron black
pip install regex pyyaml chevron black ptsd-jbroll
}

function install_gperf {
Expand Down
Loading