query_supervisor #145: error detection during processing a query
Previously, when a pending root query was finished and the end query handler was executed by the Postgres backend executor, the query handlers cleared their state and restarted counting limited values. However, when a pending query was canceled (for example, using the stop button in the PGADMIN query tool), the end handler was not called. As a result, the handlers treated all subsequent queries as subqueries of the already canceled root query. This leaded to situation when new queries were not broken when the time limit was exceeded becaue the timer was not re-armed.
Now an error( including breaking a query) is detected by a handler, and then each created handlers are informed about it. Handlers clear their states during handling an error.
Merge request reports
Activity
assigned to @Ickiewicz
mentioned in merge request !290 (closed)
added 29 commits
-
e7704fab...3531b161 - 27 commits from branch
develop
- 20abce33 - query_supervisor #144 (closed): error detection during processing a query
- c4b9add4 - query_supervisor: decrease some logs severities
-
e7704fab...3531b161 - 27 commits from branch
added 2 commits
- ebf6fd08 - query_supervisor #145 (closed): error detection during processing a query
- f24acb8d - query_supervisor: decrease some logs severities
changed title from query_supervisor #14 (closed)4: error detection during processing a query to query_supervisor #14 (closed)5: error detection during processing a query
added 1 commit
- 477ada1a - add unit tests for situation when postgres rises error
added 5 commits
-
477ada1a...f4cd79f3 - 2 commits from branch
develop
- f97d4b83 - query_supervisor #145 (closed): error detection during processing a query
- 2d3d6af1 - query_supervisor: decrease some logs severities
- d13c6f10 - add unit tests for situation when postgres rises error
Toggle commit list-
477ada1a...f4cd79f3 - 2 commits from branch
added 1 commit
- 98276090 - omg, unit test work now in release build but need more work
added 1 commit
- d3097058 - omg, unit test work now in release build but need more work
added 1 commit
- 06b5c920 - omg, unit test work now in release build but need more work
added 1 commit
- 4fe77ca0 - omg, unit test work now in release build but need more work
added 1 commit
- 7801af34 - omg, unit test work now in release build but need more work
added 1 commit
- 10215691 - omg, unit test work now in release build but need more work
added 1 commit
- 99a94d89 - add unit tests for situation when postgres rises error
added 1 commit
- 71972154 - add unit tests for situation when postgres rises error
requested review from @bwrona