Drop
The Airport extension support dropping tables. The Arrow Flight server can decide if the table should actually be dropped.
Example
For a DuckDB session to drop a table, a standard SQL DROP TABLE
statement is executed in a schema that is managed by the Airport extension.
-- Attach an Airport database
'example' (TYPE AIRPORT, location 'grpc://localhost:50312/');
ATTACH
DROP TABLE example.main.employees;
Arrow Flight Server Implementation Notes
The Airport extension will perform a DoAction
Arrow Flight RPC with a method name of drop_table
.