forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit31f579f
committed
Prevent auto_explain from changing the output of a user's EXPLAIN.
Commitaf7914c, which introduced theEXPLAIN (TIMING) option, for some reason coded explain.c to look atplanstate->instrument->need_timer rather than es->timing to decidewhether to print timing info. However, the former flag might get setas a result of contrib/auto_explain wanting timing information. Wecertainly don't want activation of auto_explain to change user-visiblestatement behavior, so fix that.Also fix an independent bug introduced in the same patch: in the codepath for a never-executed node with a machine-friendly output format,if timing was selected, it would fail to print the Actual Rows and ActualLoops items.Per bug #10404 from Tomonari Katsumata. Back-patch to 9.2 where thefaulty code was introduced.1 parent0128a77 commit31f579f
1 file changed
+16
-11
lines changedLines changed: 16 additions & 11 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1006 | 1006 |
| |
1007 | 1007 |
| |
1008 | 1008 |
| |
| 1009 | + | |
| 1010 | + | |
| 1011 | + | |
| 1012 | + | |
| 1013 | + | |
| 1014 | + | |
1009 | 1015 |
| |
1010 | 1016 |
| |
1011 | 1017 |
| |
1012 | 1018 |
| |
1013 |
| - | |
| 1019 | + | |
| 1020 | + | |
1014 | 1021 |
| |
1015 | 1022 |
| |
1016 | 1023 |
| |
| |||
1019 | 1026 |
| |
1020 | 1027 |
| |
1021 | 1028 |
| |
1022 |
| - | |
| 1029 | + | |
1023 | 1030 |
| |
1024 | 1031 |
| |
1025 | 1032 |
| |
| |||
1030 | 1037 |
| |
1031 | 1038 |
| |
1032 | 1039 |
| |
1033 |
| - | |
| 1040 | + | |
1034 | 1041 |
| |
1035 | 1042 |
| |
1036 | 1043 |
| |
| |||
1041 | 1048 |
| |
1042 | 1049 |
| |
1043 | 1050 |
| |
1044 |
| - | |
1045 | 1051 |
| |
1046 | 1052 |
| |
1047 |
| - | |
1048 |
| - | |
1049 |
| - | |
1050 |
| - | |
1051 |
| - | |
1052 | 1053 |
| |
1053 | 1054 |
| |
| 1055 | + | |
| 1056 | + | |
| 1057 | + | |
| 1058 | + | |
| 1059 | + | |
1054 | 1060 |
| |
1055 | 1061 |
| |
1056 | 1062 |
| |
1057 |
| - | |
1058 | 1063 |
| |
1059 | 1064 |
| |
1060 | 1065 |
| |
| |||
1220 | 1225 |
| |
1221 | 1226 |
| |
1222 | 1227 |
| |
1223 |
| - | |
| 1228 | + | |
1224 | 1229 |
| |
1225 | 1230 |
| |
1226 | 1231 |
| |
|
0 commit comments
Comments
(0)