Skip to content

Commit 5f8829f

Browse files
committed
vendor: Update vendored sources to duckdb/duckdb@1969db0
Some nitpicking fixes (duckdb/duckdb#17337)
1 parent 92ced48 commit 5f8829f

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

src/duckdb/extension/parquet/parquet_extension.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,9 @@ unique_ptr<FunctionData> ParquetWriteBind(ClientContext &context, CopyFunctionBi
303303
* interchangeably */
304304
bind_data->codec = duckdb_parquet::CompressionCodec::LZ4_RAW;
305305
} else {
306-
throw BinderException("Expected %s argument to be either [uncompressed, brotli, gzip, snappy, or zstd]",
307-
loption);
306+
throw BinderException(
307+
"Expected %s argument to be any of [uncompressed, brotli, gzip, snappy, lz4, lz4_raw or zstd]",
308+
loption);
308309
}
309310
} else if (loption == "field_ids") {
310311
if (option.second[0].type().id() == LogicalTypeId::VARCHAR &&

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 "0-dev2962"
2+
#define DUCKDB_PATCH_VERSION "0-dev2967"
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.0-dev2962"
11+
#define DUCKDB_VERSION "v1.3.0-dev2967"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "2627566d6f"
14+
#define DUCKDB_SOURCE_ID "1969db05c4"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

src/duckdb/src/include/duckdb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1610,7 +1610,7 @@ Returns the statement type of the statement to be executed
16101610
DUCKDB_C_API duckdb_statement_type duckdb_prepared_statement_type(duckdb_prepared_statement statement);
16111611

16121612
//===--------------------------------------------------------------------===//
1613-
// Bind Values To Prepared Statements
1613+
// Bind Values to Prepared Statements
16141614
//===--------------------------------------------------------------------===//
16151615

16161616
/*!

src/duckdb/src/parser/transform/constraint/transform_constraint.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ unique_ptr<Constraint> Transformer::TransformConstraint(duckdb_libpgquery::PGCon
127127
column.SetCompressionType(CompressionTypeFromString(constraint.compression_name));
128128
if (column.CompressionType() == CompressionType::COMPRESSION_AUTO) {
129129
throw ParserException("Unrecognized option for column compression, expected none, uncompressed, rle, "
130-
"dictionary, pfor, bitpacking or fsst");
130+
"dictionary, pfor, bitpacking, fsst, chimp, patas, zstd, alp, alprd or roaring");
131131
}
132132
return nullptr;
133133
case duckdb_libpgquery::PG_CONSTR_FOREIGN:

0 commit comments

Comments
 (0)