function getTable(dbName: string, tableName: string) {
  return store.get(`${dbName}.${tableName}`) || new Map<string, any>();
}