Skip to content

Commit

Permalink
debug chsql windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
akvlad committed Oct 7, 2024
1 parent d9cf819 commit 4c68a3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chsql/src/parquet_ordered_scan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace duckdb {
vector<string> files;
vector<LogicalType> returnTypes;
vector<string> names;
DUCKDB_API unique_ptr<FunctionData> Copy() const override {
unique_ptr<FunctionData> Copy() const override {
throw std::runtime_error("not implemented");
}
static bool EqualStrArrays(const vector<string> &a, const vector<string> &b) {
Expand All @@ -34,7 +34,7 @@ namespace duckdb {
}
return true;
}
DUCKDB_API bool Equals(const FunctionData &other) const override {
bool Equals(const FunctionData &other) const override {
const auto &o = other.Cast<OrderedReadFunctionData>();
if (!EqualStrArrays(o.files, files)) {
return false;
Expand Down

0 comments on commit 4c68a3d

Please sign in to comment.