| 1405 | } |
| 1406 | |
| 1407 | AdbcStatusCode AdbcStatementSetSqlQuery(struct AdbcStatement *statement, const char *query, struct AdbcError *error) { |
| 1408 | if (!statement->private_driver) { |
| 1409 | return ADBC_STATUS_INVALID_STATE; |
| 1410 | } |
| 1411 | INIT_ERROR(error, statement); |
| 1412 | return statement->private_driver->StatementSetSqlQuery(statement, query, error); |
| 1413 | } |
| 1414 | |
| 1415 | AdbcStatusCode AdbcStatementSetSubstraitPlan(struct AdbcStatement *statement, const uint8_t *plan, size_t length, |
| 1416 | struct AdbcError *error) { |
no outgoing calls
no test coverage detected