duckdb 0.4.1-dev2276.0 → 0.4.1-dev2295.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/duckdb.cpp +4 -0
- package/src/duckdb.hpp +175 -174
- package/src/parquet-amalgamation.cpp +26161 -26142
- package/test/extension.test.js +4 -0
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -7947,6 +7947,10 @@ uint64_t NextPowerOfTwo(uint64_t v) {
|
|
|
7947
7947
|
return v;
|
|
7948
7948
|
}
|
|
7949
7949
|
|
|
7950
|
+
bool IsRowIdColumnId(column_t column_id) {
|
|
7951
|
+
return column_id == COLUMN_IDENTIFIER_ROW_ID;
|
|
7952
|
+
}
|
|
7953
|
+
|
|
7950
7954
|
} // namespace duckdb
|
|
7951
7955
|
/*
|
|
7952
7956
|
** This code taken from the SQLite test library. Originally found on
|