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