B.3. Extensions #

The parameters below control the installation and loading of DuckDB extensions into the session.

duckdb.autoinstall_known_extensions (boolean) #

Specifies whether pgpro_axe automatically installs known DuckDB extensions when an analytical query requires them.

You can install extensions manually using the duckdb.install_extension stored procedure.

Default value: true.

Access: Superuser only.

duckdb.autoload_known_extensions (boolean) #

Specifies whether pgpro_axe automatically loads installed DuckDB extensions into the session when an analytical query requires them.

You can enable automatic installation of extensions by setting the duckdb.autoinstall_known_extensions configuration parameter to true, or install extensions manually using the duckdb.install_extension stored procedure.

Default value: true.

Access: Superuser only.

duckdb.allow_community_extensions (boolean) #

Specifies whether pgpro_axe can install community DuckDB extensions.

Default value: false.

Access: Superuser only.

duckdb.allow_unsigned_extensions (boolean) #

Specifies whether pgpro_axe can load DuckDB extensions with invalid or missing signatures. This is useful for developing DuckDB extensions.

Default value: false.

Access: Superuser only.