(
table: SqlTable
)
| 56 | } |
| 57 | |
| 58 | getTableStructure( |
| 59 | table: SqlTable |
| 60 | ): ExecutableSqlQuery { |
| 61 | return [ |
| 62 | `select column_name, data_type, character_maximum_length ` + |
| 63 | `from INFORMATION_SCHEMA.COLUMNS where table_name = $1`, |
| 64 | table.name |
| 65 | ] |
| 66 | } |
| 67 | |
| 68 | createSqlFieldCondition( |
| 69 | currentTable: string, |
nothing calls this directly
no outgoing calls
no test coverage detected