catalogIndexes method
Implementation
Future<Uint8List?> catalogIndexes(
int connectionId,
String table,
) async {
final r = await _sendRequest<QueryResponse>(
CatalogIndexesRequest(_nextRequestId(), connectionId, table),
);
if (r.error != null) return null;
return r.data;
}