Skip to content

Commit e5158eb

Browse files
authored
Merge pull request #64 from duckdb/duckdb-144
Update DuckDB to v1.4.4
2 parents bdc3bf1 + 8dcb720 commit e5158eb

File tree

99 files changed

+27
-14
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+27
-14
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2018-2025 Stichting DuckDB Foundation
1+
Copyright 2018-2026 Stichting DuckDB Foundation
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
DUCKDB_VERSION=v1.4.3
1+
DUCKDB_VERSION=v1.4.4
22

33
fetch.static.libs:
44
cd lib/${PLATFORM} && \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Starting with v0.3.0, the module includes pre-built static libraries for all pla
2121

2222
| duckdb version | module version |
2323
| -------------- | -------------- |
24+
| v1.4.4 | v0.3.3 |
2425
| v1.4.3 | v0.3.0 |
2526

2627
### Legacy per-platform submodules (v0.1.x)

include/duckdb.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3268,7 +3268,8 @@ This allows NULL values to be written to the vector, regardless of whether a val
32683268
DUCKDB_C_API void duckdb_vector_ensure_validity_writable(duckdb_vector vector);
32693269

32703270
/*!
3271-
Assigns a string element in the vector at the specified location.
3271+
Assigns a string element in the vector at the specified location. The vector type must be VARCHAR and the input must be
3272+
valid UTF-8. Otherwise, undefined behavior is expected at later stages.
32723273
32733274
* @param vector The vector to alter
32743275
* @param index The row position in the vector to assign the string to
@@ -3277,7 +3278,8 @@ Assigns a string element in the vector at the specified location.
32773278
DUCKDB_C_API void duckdb_vector_assign_string_element(duckdb_vector vector, idx_t index, const char *str);
32783279

32793280
/*!
3280-
Assigns a string element in the vector at the specified location. You may also use this function to assign BLOBs.
3281+
Assigns a string element in the vector at the specified location. The vector type can be VARCHAR or BLOB. In the case of
3282+
VARCHAR, you must pass valid UTF-8. Otherwise, undefined behavior is expected at later stages.
32813283
32823284
* @param vector The vector to alter
32833285
* @param index The row position in the vector to assign the string to

lib/darwin-amd64/duckdb.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3268,7 +3268,8 @@ This allows NULL values to be written to the vector, regardless of whether a val
32683268
DUCKDB_C_API void duckdb_vector_ensure_validity_writable(duckdb_vector vector);
32693269

32703270
/*!
3271-
Assigns a string element in the vector at the specified location.
3271+
Assigns a string element in the vector at the specified location. The vector type must be VARCHAR and the input must be
3272+
valid UTF-8. Otherwise, undefined behavior is expected at later stages.
32723273
32733274
* @param vector The vector to alter
32743275
* @param index The row position in the vector to assign the string to
@@ -3277,7 +3278,8 @@ Assigns a string element in the vector at the specified location.
32773278
DUCKDB_C_API void duckdb_vector_assign_string_element(duckdb_vector vector, idx_t index, const char *str);
32783279

32793280
/*!
3280-
Assigns a string element in the vector at the specified location. You may also use this function to assign BLOBs.
3281+
Assigns a string element in the vector at the specified location. The vector type can be VARCHAR or BLOB. In the case of
3282+
VARCHAR, you must pass valid UTF-8. Otherwise, undefined behavior is expected at later stages.
32813283
32823284
* @param vector The vector to alter
32833285
* @param index The row position in the vector to assign the string to

0 commit comments

Comments
 (0)