(str: string)
| 7 | } from "../base-driver"; |
| 8 | |
| 9 | function wrapParen(str: string) { |
| 10 | if (str.toUpperCase() === "NULL") return str; |
| 11 | if (str.length >= 2 && str.startsWith("(") && str.endsWith(")")) return str; |
| 12 | return "(" + str + ")"; |
| 13 | } |
| 14 | |
| 15 | function generateCreateColumn( |
| 16 | driver: BaseDriver, |
no outgoing calls
no test coverage detected