Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 543 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 543 Bytes

Running the ODBC Client and Tests

Build the ODBC client

Debug (for development)
make debug
Release (for usage)
make

Run the ODBC Unit Tests

The ODBC tests are written with the catch framework. To run the tests, run the following command from the main DuckDB repository:

build/debug/test/test_odbc

You can also individually run the tests by specifying the test name as an argument to the test executable:

build/debug/test/test_odbc 'Test ALTER TABLE statement'