Skip to content

Commit 05292bf

Browse files
committed
Fix main
1 parent 3ecd608 commit 05292bf

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.29)
22

33
project(duckdb_py LANGUAGES CXX)
44

5-
# Always use C++11
6-
set(CMAKE_CXX_STANDARD 11)
5+
# Always use C++17
6+
set(CMAKE_CXX_STANDARD 17)
77
set(CMAKE_CXX_STANDARD_REQUIRED ON)
88
set(CMAKE_CXX_EXTENSIONS OFF)
99
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")

external/duckdb

Submodule duckdb updated 629 files

src/duckdb_py/arrow/polars_filter_pushdown.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ py::object PolarsFilterPushdown::TransformFilter(const TableFilterSet &filter_co
140140

141141
py::object expression = py::none();
142142
for (auto &entry : filter_collection) {
143-
auto column_idx = entry.ColumnIndex();
143+
auto column_idx = entry.GetIndex();
144144
auto &column_name = columns[column_idx];
145145
auto col_expr = import_cache.polars.col()(column_name);
146146

src/duckdb_py/arrow/pyarrow_filter_pushdown.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ py::object PyArrowFilterPushdown::TransformFilter(TableFilterSet &filter_collect
316316

317317
py::object expression = py::none();
318318
for (auto &entry : filter_collection) {
319-
auto column_idx = entry.ColumnIndex();
319+
auto column_idx = entry.GetIndex();
320320
auto &column_name = columns[column_idx];
321321

322322
vector<string> column_ref;

0 commit comments

Comments
 (0)