SchemaSnapshot constructor

SchemaSnapshot(
  1. List<TableSchema> tables
)

Validates physical metadata without opening a database connection.

Implementation

SchemaSnapshot(List<TableSchema> tables)
  : tables = List.unmodifiable(tables) {
  validateSchema(tables);
}