inspect method

Future<ArrowSchema> inspect({
  1. required String database,
  2. required String table,
  3. List<String>? namespace,
})

Implementation

Future<ArrowSchema> inspect({required String database, required String table, List<String>? namespace}) async {
  final response = await _invoke("inspect", {"database": database, "table": table, "namespace": namespace});
  if (response is! BinaryContent) {
    throw _unexpectedResponseError("inspect");
  }
  return ArrowIpcSchema(response.data).schema;
}