(data: RowData, schema: TableSchema)
| 350 | * row separately. |
| 351 | */ |
| 352 | export function coerceRowToSchema(data: RowData, schema: TableSchema): ValidationResult { |
| 353 | coerceRowValues(data, schema) |
| 354 | return validateRowAgainstSchema(data, schema) |
| 355 | } |
| 356 | |
| 357 | /** Validates row data size is within limits. */ |
| 358 | export function validateRowSize(data: RowData): ValidationResult { |
no test coverage detected