NonNumericPaginationKeyError exported to facilitate black box testing
(schema, table, paginationKey string)
| 253 | |
| 254 | // NonNumericPaginationKeyError exported to facilitate black box testing |
| 255 | func NonNumericPaginationKeyError(schema, table, paginationKey string) error { |
| 256 | return fmt.Errorf("Pagination Key `%s` for %s is non-numeric", paginationKey, QuotedTableNameFromString(schema, table)) |
| 257 | } |
| 258 | |
| 259 | // NonBinaryCollationError exported to facilitate black box testing |
| 260 | func NonBinaryCollationError(schema, table, paginationKey, collation string) error { |
no test coverage detected