NonExistingPaginationKeyColumnError exported to facilitate black box testing
(schema, table, paginationKey string)
| 243 | |
| 244 | // NonExistingPaginationKeyColumnError exported to facilitate black box testing |
| 245 | func 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 |
| 250 | func NonExistingPaginationKeyError(schema, table string) error { |