(bytes: Uint8Array)
| 260 | }; |
| 261 | |
| 262 | const bytesToHex = (bytes: Uint8Array): string => |
| 263 | Array.from(bytes) |
| 264 | .map((b) => b.toString(16).toUpperCase().padStart(2, "0")) |
| 265 | .join(""); |
| 266 | |
| 267 | // rowValueToSQLLiteral renders a RowValue as an engine-aware SQL literal, |
| 268 | // suitable for inlining into an INSERT statement. It is type-aware: numbers |
no test coverage detected