Skip to content

Commit d783fa6

Browse files
duckdblabs-botgithub-actions[bot]
authored andcommitted
Update vendored DuckDB sources to db3f895ce8
1 parent 0f3be91 commit d783fa6

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

src/duckdb/src/function/table/version/pragma_version.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ifndef DUCKDB_PATCH_VERSION
2-
#define DUCKDB_PATCH_VERSION "1-dev245"
2+
#define DUCKDB_PATCH_VERSION "1-dev259"
33
#endif
44
#ifndef DUCKDB_MINOR_VERSION
55
#define DUCKDB_MINOR_VERSION 3
@@ -8,10 +8,10 @@
88
#define DUCKDB_MAJOR_VERSION 1
99
#endif
1010
#ifndef DUCKDB_VERSION
11-
#define DUCKDB_VERSION "v1.3.1-dev245"
11+
#define DUCKDB_VERSION "v1.3.1-dev259"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "f486804d76"
14+
#define DUCKDB_SOURCE_ID "db3f895ce8"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

src/duckdb/src/include/duckdb/main/extension_entries.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,8 @@ static constexpr ExtensionFunctionEntry EXTENSION_FUNCTIONS[] = {
150150
{"delta_scan", "delta", CatalogType::TABLE_FUNCTION_ENTRY},
151151
{"drop_fts_index", "fts", CatalogType::PRAGMA_FUNCTION_ENTRY},
152152
{"dsdgen", "tpcds", CatalogType::TABLE_FUNCTION_ENTRY},
153+
{"duckdb_proj_compiled_version", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
154+
{"duckdb_proj_version", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
153155
{"ducklake_add_data_files", "ducklake", CatalogType::TABLE_FUNCTION_ENTRY},
154156
{"ducklake_cleanup_old_files", "ducklake", CatalogType::TABLE_FUNCTION_ENTRY},
155157
{"ducklake_expire_snapshots", "ducklake", CatalogType::TABLE_FUNCTION_ENTRY},
@@ -550,6 +552,7 @@ static constexpr ExtensionFunctionEntry EXTENSION_FUNCTIONS[] = {
550552
{"st_assvg", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
551553
{"st_astext", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
552554
{"st_aswkb", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
555+
{"st_azimuth", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
553556
{"st_boundary", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
554557
{"st_buffer", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
555558
{"st_buildarea", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
@@ -573,11 +576,13 @@ static constexpr ExtensionFunctionEntry EXTENSION_FUNCTIONS[] = {
573576
{"st_dimension", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
574577
{"st_disjoint", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
575578
{"st_distance", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
579+
{"st_distance_geos", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
576580
{"st_distance_sphere", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
577581
{"st_distance_spheroid", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
578582
{"st_drivers", "spatial", CatalogType::TABLE_FUNCTION_ENTRY},
579583
{"st_dump", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
580584
{"st_dwithin", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
585+
{"st_dwithin_geos", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
581586
{"st_dwithin_spheroid", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
582587
{"st_endpoint", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
583588
{"st_envelope", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
@@ -624,6 +629,7 @@ static constexpr ExtensionFunctionEntry EXTENSION_FUNCTIONS[] = {
624629
{"st_makepolygon", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
625630
{"st_makevalid", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
626631
{"st_maximuminscribedcircle", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
632+
{"st_memunion_agg", "spatial", CatalogType::AGGREGATE_FUNCTION_ENTRY},
627633
{"st_minimumrotatedrectangle", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
628634
{"st_mmax", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
629635
{"st_mmin", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
@@ -666,6 +672,7 @@ static constexpr ExtensionFunctionEntry EXTENSION_FUNCTIONS[] = {
666672
{"st_simplify", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
667673
{"st_simplifypreservetopology", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
668674
{"st_startpoint", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
675+
{"st_tileenvelope", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
669676
{"st_touches", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
670677
{"st_transform", "spatial", CatalogType::SCALAR_FUNCTION_ENTRY},
671678
{"st_translate", "spatial", CatalogType::MACRO_ENTRY},

src/duckdb/src/storage/storage_info.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ static const StorageVersionInfo storage_version_info[] = {
8080
{"v1.2.1", 65},
8181
{"v1.2.2", 65},
8282
{"v1.3.0", 66},
83+
{"v1.3.1", 66},
8384
{nullptr, 0}
8485
};
8586
// END OF STORAGE VERSION INFO
@@ -102,6 +103,7 @@ static const SerializationVersionInfo serialization_version_info[] = {
102103
{"v1.2.1", 4},
103104
{"v1.2.2", 4},
104105
{"v1.3.0", 5},
106+
{"v1.3.1", 5},
105107
{"latest", 5},
106108
{nullptr, 0}
107109
};

0 commit comments

Comments
 (0)