Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Pressing Cmd+R to refresh while a query is executing now cancels the running query and starts a fresh one instead of silently doing nothing.
- iCloud Sync between the iPhone and Mac apps: the iOS app now uses the Production CloudKit environment, so a development build no longer syncs into a separate database the Mac never reads.
- Exports no longer fail mid-table on servers that enforce a statement time limit; the export session disables the limit and restores it afterwards, the same way mysqldump does. (#1633)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ extension MainContentCoordinator {
if let (tab, tabIndex) = tabManager.selectedTabAndIndex,
tab.tabType == .table {
currentQueryTask?.cancel()
currentQueryTask = nil
tabManager.mutate(at: tabIndex) { $0.execution.isExecuting = false }
rebuildTableQuery(at: tabIndex)
runQuery()
}
Expand All @@ -43,6 +45,8 @@ extension MainContentCoordinator {
if let (tab, tabIndex) = tabManager.selectedTabAndIndex,
tab.tabType == .table {
currentQueryTask?.cancel()
currentQueryTask = nil
tabManager.mutate(at: tabIndex) { $0.execution.isExecuting = false }
rebuildTableQuery(at: tabIndex)
runQuery()
}
Expand Down
Loading