23.3. Advanced #
duckdb.convert_unsupported_numeric_to_double#Converts
NUMERICtypes with unsupportedprecision/scaletoDOUBLEinstead of throwing an error.Possible values:
true
false
DuckDB supports
NUMERIC/DECIMALwith precision 1-38 and scale 0-38 (where scale ≤ precision). ForNUMERICs outside these limits:If true is specified, unsupported
NUMERICs are converted toDOUBLEwith possible precision loss.If false is specified, unsupported
NUMERICs cause an error.
Default value: false.
Access: All users.
duckdb.unsafe_allow_mixed_transactions#Allows mixed transactions between DuckDB and Postgres Pro.
Important
This parameter enables transactions that modify data in both databases, but it may cause consistency issues and is not recommended for production use.
Default value: false.
Access: All users.