duckdb 0.4.1-dev2142.0 → 0.4.1-dev2145.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-dev2142.0",
4
+ "version": "0.4.1-dev2145.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -58623,15 +58623,7 @@ void ExpressionExecutor::Execute(const BoundReferenceExpression &expr, Expressio
58623
58623
  const SelectionVector *sel, idx_t count, Vector &result) {
58624
58624
  D_ASSERT(expr.index != DConstants::INVALID_INDEX);
58625
58625
  D_ASSERT(expr.index < chunk->ColumnCount());
58626
- #ifdef DEBUG
58627
- // Input Vector and result Vector should not be the same
58628
- auto input_aux = chunk->data[expr.index].GetAuxiliary();
58629
- auto input_buffer = chunk->data[expr.index].GetBuffer();
58630
- auto result_aux = result.GetAuxiliary();
58631
- auto result_buffer = result.GetBuffer();
58632
- D_ASSERT(input_aux != result_aux || input_aux == nullptr);
58633
- D_ASSERT(input_buffer != result_buffer || input_buffer == nullptr);
58634
- #endif
58626
+
58635
58627
  if (sel) {
58636
58628
  result.Slice(chunk->data[expr.index], *sel, count);
58637
58629
  } else {
package/src/duckdb.hpp CHANGED
@@ -11,8 +11,8 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
11
11
  #pragma once
12
12
  #define DUCKDB_AMALGAMATION 1
13
13
  #define DUCKDB_AMALGAMATION_EXTENDED 1
14
- #define DUCKDB_SOURCE_ID "4053be069"
15
- #define DUCKDB_VERSION "v0.4.1-dev2142"
14
+ #define DUCKDB_SOURCE_ID "843c310ff"
15
+ #define DUCKDB_VERSION "v0.4.1-dev2145"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //