This extension, TestUtils, provide some tooling for backward compatiblity tests of serialization / deserialization of query plans and results.
DuckDB extensions uses VCPKG for dependency management. Enabling VCPKG is very simple: follow the installation instructions or just run the following:
git clone https://github.com/Microsoft/vcpkg.git
./vcpkg/bootstrap-vcpkg.sh
export VCPKG_TOOLCHAIN_PATH=`pwd`/vcpkg/scripts/buildsystems/vcpkg.cmakeNote: VCPKG is only required for extensions that want to rely on it for dependency management. If you want to develop an extension without dependencies, or want to do your own dependency management, just skip this step. Note that the example extension uses VCPKG to build with a dependency for instructive purposes, so when skipping this step the build may not work without removing the dependency.
Now to build the extension, run:
makeThe main binaries that will be built are:
./build/release/duckdb
./build/release/test/unittest
./build/release/extension/test_utils/test_utils.duckdb_extensionduckdbis the binary for the duckdb shell with the extension code automatically loaded.unittestis the test runner of duckdb. Again, the extension is already linked into the binary.test_utils.duckdb_extensionis the loadable binary as it would be distributed.
- takes a text file containing SQL queries, one per line:
> count the number of lines in the file
- write the number of lines to the file
> then line by line:
- parse the query
- create a plan
- write a UUID to the file
- serialize the plan in the file
- push { UUID, plan } in a fifo queue
- takes no arguments
- for each plan in the queue, run the query
- store the result in a map
- take a binary file
> read the number of plans from the file
> for each plan:
- read UUID from the file
- deserialize the plan
- run the query
- write the UUID to the file
- serialize the result
- take a binary file
> read the number of results from the file
> for each result:
- read UUID from the file
- deserialize the result
- compare the result with the expected result
To install your extension binaries from S3, you will need to do two things. Firstly, DuckDB should be launched with the
allow_unsigned_extensions option set to true. How to set this will depend on the client you're using. Some examples:
CLI:
duckdb -unsignedPython:
con = duckdb.connect(':memory:', config={'allow_unsigned_extensions' : 'true'})NodeJS:
db = new duckdb.Database(':memory:', {"allow_unsigned_extensions": "true"});Secondly, you will need to set the repository endpoint in DuckDB to the HTTP url of your bucket + version of the extension you want to install. To do this run the following SQL query in DuckDB:
SET custom_extension_repository='bucket.s3.eu-west-1.amazonaws.com/<your_extension_name>/latest';Note that the /latest path will allow you to install the latest extension version available for your current version of
DuckDB. To specify a specific version, you can pass the version instead.
After running these steps, you can install and load your extension using the regular INSTALL/LOAD commands in DuckDB:
INSTALL test_utils
LOAD test_utils