Skip to content

Commit

Permalink
chore: Update vendored sources to duckdb/duckdb@1ffcc8b
Browse files Browse the repository at this point in the history
Merge pull request duckdb/duckdb#11708 from carlopi/docker_builds
Merge pull request duckdb/duckdb#11713 from carlopi/no_python_builds
Merge pull request duckdb/duckdb#11701 from Mytherin/improvestatementreduction
Merge pull request duckdb/duckdb#11700 from Mytherin/bumpjulia
  • Loading branch information
krlmlr committed May 1, 2024
1 parent 777b298 commit 7fbca36
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion src/duckdb/src/common/local_file_system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ extern "C" WINBASEAPI BOOL QueryFullProcessImageNameW(HANDLE, DWORD, LPWSTR, PDW
#endif

#if defined(__linux__)
#include <linux/falloc.h>
// See https://man7.org/linux/man-pages/man2/fallocate.2.html
#ifndef _GNU_SOURCE
#define _GNU_SOURCE /* See feature_test_macros(7) */
#endif
#include <fcntl.h>
#include <libgen.h>
// See e.g.:
// https://opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/TargetConditionals.h.auto.html
Expand Down
6 changes: 3 additions & 3 deletions src/duckdb/src/function/table/version/pragma_version.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef DUCKDB_PATCH_VERSION
#define DUCKDB_PATCH_VERSION "3-dev135"
#define DUCKDB_PATCH_VERSION "3-dev145"
#endif
#ifndef DUCKDB_MINOR_VERSION
#define DUCKDB_MINOR_VERSION 10
Expand All @@ -8,10 +8,10 @@
#define DUCKDB_MAJOR_VERSION 0
#endif
#ifndef DUCKDB_VERSION
#define DUCKDB_VERSION "v0.10.3-dev135"
#define DUCKDB_VERSION "v0.10.3-dev145"
#endif
#ifndef DUCKDB_SOURCE_ID
#define DUCKDB_SOURCE_ID "e9b009b4e5"
#define DUCKDB_SOURCE_ID "1ffcc8bf8e"
#endif
#include "duckdb/function/table/system_functions.hpp"
#include "duckdb/main/database.hpp"
Expand Down

0 comments on commit 7fbca36

Please sign in to comment.