23 lines
524 B
SQL
23 lines
524 B
SQL
# name: test/extension/concurrent_load_extension.test
|
|
# description: Test concurrent load extension
|
|
# group: [extension]
|
|
|
|
# FIXME: this is mostly working, but there are still some concurrency issues in the DBConfig around ParserExtension/ExtensionCallback registration
|
|
mode skip
|
|
|
|
require notmingw
|
|
|
|
require skip_reload
|
|
|
|
require allow_unsigned_extensions
|
|
|
|
concurrentloop i 0 100
|
|
|
|
statement ok
|
|
LOAD '__BUILD_DIRECTORY__/test/extension/loadable_extension_demo.duckdb_extension';
|
|
|
|
statement ok
|
|
FROM duckdb_extensions();
|
|
|
|
endloop
|