Skip to content
Draft
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
7 changes: 7 additions & 0 deletions .github/workflows/custom/after-install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,10 @@ runs:
run: |
ccache -s
shell: bash

# Must happen after R is installed...
- name: Define R CMD check error condition
# Allow WARNINGs from abort()
run: |
cat('RCMDCHECK_ERROR_ON="error"\n', file = Sys.getenv("GITHUB_ENV"), append = TRUE)
shell: Rscript {0}
2 changes: 2 additions & 0 deletions src/duckdb/third_party/re2/re2/re2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ int RE2::Options::ParseFlags() const {
}

void RE2::Init(const StringPiece& pattern, const Options& options) {
abort();

static std::once_flag empty_once;
std::call_once(empty_once, []() {
(void) new (empty_storage) EmptyStorage;
Expand Down
Loading