(kind: RowValue["kind"])
| 19 | import { generateInsertStatementFromRows, rowValueToSQLLiteral } from "./sql"; |
| 20 | |
| 21 | const rv = (kind: RowValue["kind"]): RowValue => |
| 22 | create(RowValueSchema, { kind }); |
| 23 | |
| 24 | describe("rowValueToSQLLiteral", () => { |
| 25 | it("renders NULL for undefined and nullValue", () => { |