(str: string)
| 360 | describe(`column name encoding (camelCase to snake_case)`, () => { |
| 361 | // Helper to simulate snakeCamelMapper's encode function |
| 362 | const camelToSnake = (str: string): string => |
| 363 | str.replace(/[A-Z]/g, (letter) => `_${letter.toLowerCase()}`) |
| 364 | |
| 365 | it(`should encode column names in where clause when encoder is provided`, () => { |
| 366 | const result = compileSQL( |
nothing calls this directly
no outgoing calls
no test coverage detected