duckdb 0.4.1-dev216.0 → 0.4.1-dev223.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-dev216.0",
4
+ "version": "0.4.1-dev223.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -126914,23 +126914,23 @@ namespace duckdb {
126914
126914
 
126915
126915
  #ifdef _WIN32
126916
126916
 
126917
- void *dlopen(const char *file, int mode) {
126917
+ inline void *dlopen(const char *file, int mode) {
126918
126918
  D_ASSERT(file);
126919
126919
  return (void *)LoadLibrary(file);
126920
126920
  }
126921
126921
 
126922
- void *dlsym(void *handle, const char *name) {
126922
+ inline void *dlsym(void *handle, const char *name) {
126923
126923
  D_ASSERT(handle);
126924
126924
  return (void *)GetProcAddress((HINSTANCE)handle, name);
126925
126925
  }
126926
126926
 
126927
- std::string GetDLError(void) {
126927
+ inline std::string GetDLError(void) {
126928
126928
  return LocalFileSystem::GetLastErrorAsString();
126929
126929
  }
126930
126930
 
126931
126931
  #else
126932
126932
 
126933
- std::string GetDLError(void) {
126933
+ inline std::string GetDLError(void) {
126934
126934
  return dlerror();
126935
126935
  }
126936
126936
 
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 "e2674ac87"
15
- #define DUCKDB_VERSION "v0.4.1-dev216"
14
+ #define DUCKDB_SOURCE_ID "4d39f040c"
15
+ #define DUCKDB_VERSION "v0.4.1-dev223"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //