MCPcopy Create free account
hub / github.com/Shopify/ghostferry / NonExistingPaginationKeyColumnError

Function NonExistingPaginationKeyColumnError

table_schema_cache.go:245–247  ·  view source on GitHub ↗

NonExistingPaginationKeyColumnError exported to facilitate black box testing

(schema, table, paginationKey string)

Source from the content-addressed store, hash-verified

243
244// NonExistingPaginationKeyColumnError exported to facilitate black box testing
245func NonExistingPaginationKeyColumnError(schema, table, paginationKey string) error {
246 return fmt.Errorf("Pagination Key `%s` for %s non existent", paginationKey, QuotedTableNameFromString(schema, table))
247}
248
249// NonExistingPaginationKeyError exported to facilitate black box testing
250func NonExistingPaginationKeyError(schema, table string) error {

Calls 2

ErrorfMethod · 0.65