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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
- "version": "0.4.1-dev2276.0",
4
+ "version": "0.4.1-dev2295.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
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