@qualithm/arrow-flight-client - v0.1.4
    Preparing search index...

    Type Alias PreparedStatement

    Prepared statement handle returned from preparing a SQL statement.

    type PreparedStatement = {
        datasetSchema: Uint8Array;
        handle: Uint8Array;
        parameterSchema: Uint8Array;
    }
    Index

    Properties

    datasetSchema: Uint8Array

    Schema of the result set (IPC-encoded). Empty if the statement doesn't return results.

    handle: Uint8Array

    Opaque handle for the prepared statement on the server.

    parameterSchema: Uint8Array

    Schema of the parameters (IPC-encoded). Empty if the statement has no parameters.