You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apache Iceberg supports the fixed(L) type for a fixed-length character string of length L. Should a similar type be added to DuckDB? Without it, values of this type are cast to the VARCHAR type, which encoding might lead to performance degradation and | or memory waste.
Fixed-size string type, and more importantly, a binary data type, makes sense for hashes.
ClickHouse does it with the FixedString data type, and it is used for a wide range of applications.
Apache Iceberg supports the
fixed(L)
type for a fixed-length character string of lengthL
. Should a similar type be added to DuckDB? Without it, values of this type are cast to theVARCHAR
type, which encoding might lead to performance degradation and | or memory waste.Link: Types
The text was updated successfully, but these errors were encountered: