(tableId: string, rowId: string)
| 95 | const insertTableSql = `INSERT INTO ${tablesTable} (type, table_id, row_id, cell_id, value_data, timestamp, hash) VALUES (?, ?, ?, ?, ?, ?, ?)`; |
| 96 | const insertValueSql = `INSERT INTO ${valuesTable} (value_id, value_data, timestamp, hash) VALUES (?, ?, ?, ?)`; |
| 97 | const getRowKey = (tableId: string, rowId: string) => |
| 98 | jsonStringWithUndefined([tableId, rowId]); |
| 99 | |
| 100 | // Initialize the SQL tables |
| 101 | const initializeTables = () => { |
no test coverage detected
searching dependent graphs…