invalidateMetadata method

  1. @override
void invalidateMetadata({
  1. String? object,
})

Drops cached procedure and bulk-table metadata.

A no-op on sessions that do not describe objects. A connection and a pool clear the cache they share; a transaction forwards to the connection it holds.

Implementation

@override
void invalidateMetadata({String? object}) =>
    inner.invalidateMetadata(object: object);