()
| 88 | collHas(mapGet(schemaMap, tableName), rowIdColumnName); |
| 89 | |
| 90 | const refreshSchema = async (): Promise<void> => { |
| 91 | collClear(schemaMap); |
| 92 | arrayMap( |
| 93 | await querySchema(databaseExecuteCommand, managedTableNames), |
| 94 | ({tn, cn}) => setAdd(mapEnsure(schemaMap, tn, setNew<Id>), cn), |
| 95 | ); |
| 96 | }; |
| 97 | |
| 98 | const loadTable = async ( |
| 99 | tableName: string, |
no test coverage detected
searching dependent graphs…