(url: URL)
| 310 | * This allows users to use mysql:// connection strings with the MariaDB adapter. |
| 311 | */ |
| 312 | export function rewriteConnectionString(url: URL): URL { |
| 313 | if (url.protocol === 'mysql:') { |
| 314 | url.protocol = 'mariadb:' |
| 315 | } |
| 316 | return url |
| 317 | } |
| 318 | |
| 319 | type ArrayModeResult = unknown[][] & { meta?: mariadb.FieldInfo[]; affectedRows?: number; insertId?: BigInt } |
no outgoing calls
no test coverage detected
searching dependent graphs…