(tableName: string)
| 98 | * @throws AppError if invalid |
| 99 | */ |
| 100 | export function validateTableName(tableName: string): boolean { |
| 101 | validateIdentifier(tableName, 'table'); |
| 102 | return true; |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Validates schema name with additional checks |
no test coverage detected