NonExistingPaginationKeyError exported to facilitate black box testing
(schema, table string)
| 248 | |
| 249 | // NonExistingPaginationKeyError exported to facilitate black box testing |
| 250 | func NonExistingPaginationKeyError(schema, table string) error { |
| 251 | return fmt.Errorf("%s has no Primary Key to default to for Pagination purposes. Kindly specify a Pagination Key for this table in the CascadingPaginationColumnConfig", QuotedTableNameFromString(schema, table)) |
| 252 | } |
| 253 | |
| 254 | // NonNumericPaginationKeyError exported to facilitate black box testing |
| 255 | func NonNumericPaginationKeyError(schema, table, paginationKey string) error { |