(type, placeholder)
| 483 | ] |
| 484 | }, |
| 485 | onCustom(type, placeholder) { |
| 486 | switch (type.kind) { |
| 487 | case "MssqlParam": { |
| 488 | return [placeholder(undefined), [type] as any] |
| 489 | } |
| 490 | } |
| 491 | }, |
| 492 | onInsert(columns, placeholders, values, returning) { |
| 493 | const returningSql = returning ? returning[0] === "*" ? " OUTPUT INSERTED.*" : ` OUTPUT ${returning[0]}` : "" |
| 494 | return [ |
nothing calls this directly
no test coverage detected
searching dependent graphs…