compare static method
Compares one binding against a schema already in hand.
verify reads the live schema and calls this; it is public because anyone who already holds an MssqlTableSchema — a generator, a test, a tool — should not have to read it again to ask the same question.
Implementation
static MssqlSchemaReport compare(
MssqlTableBinding<Object?> binding,
MssqlTableSchema table,
) => MssqlSchemaReport(_compare(binding, table));