Files
email-tracker/external/duckdb/test/sql/extensions/checked_load.test
2025-10-24 19:21:19 -05:00

31 lines
722 B
SQL

# name: test/sql/extensions/checked_load.test
# description: Test metadata checks on load
# group: [extensions]
statement error
LOAD 'README.md';
----
The file is not a DuckDB extension. The metadata at the end of the file is invalid
statement ok
SET allow_extensions_metadata_mismatch=true;
# This is the error thrown by dlopen
statement error
LOAD 'README.md';
----
Error: Extension "README.md" could not be loaded
statement error
LOAD 'data/csv/no_opt.csv';
----
is not a DuckDB extension. Valid DuckDB extensions must be at least 512 bytes
statement ok
SET allow_unsigned_extensions=false;
statement error
LOAD 'README.md';
----
The file is not a DuckDB extension. The metadata at the end of the file is invalid