forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitf6f654f
committed
Allow \watch to display query execution time if \timing is enabled.
Previously \watch could not display the query execution time evenwhen \timing was enabled because it used PSQLexec instead ofSendQuery and that function didn't support \timing. This patchintroduces PSQLexecWatch and changes \watch so as to use it, instead.PSQLexecWatch is the function to run the query, print its results anddisplay how long it took (only when \timing is enabled).This patch also changes --echo-hidden so that it doesn't printthe query that \watch executes. Since \watch cannot executebackslash command queries, they should not be printed evenwhen --echo-hidden is set.Patch by me, review by Heikki Linnakangas and Michael Paquier1 parent4b91ade commitf6f654f
3 files changed
+109
-53
lines changedLines changed: 10 additions & 53 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2687 | 2687 |
| |
2688 | 2688 |
| |
2689 | 2689 |
| |
2690 |
| - | |
| 2690 | + | |
2691 | 2691 |
| |
2692 | 2692 |
| |
2693 | 2693 |
| |
| |||
2700 | 2700 |
| |
2701 | 2701 |
| |
2702 | 2702 |
| |
2703 |
| - | |
2704 |
| - | |
2705 |
| - | |
2706 |
| - | |
2707 |
| - | |
2708 |
| - | |
2709 |
| - | |
2710 |
| - | |
2711 |
| - | |
| 2703 | + | |
| 2704 | + | |
2712 | 2705 |
| |
2713 | 2706 |
| |
2714 |
| - | |
2715 |
| - | |
2716 |
| - | |
2717 |
| - | |
| 2707 | + | |
| 2708 | + | |
2718 | 2709 |
| |
2719 |
| - | |
2720 |
| - | |
2721 |
| - | |
| 2710 | + | |
2722 | 2711 |
| |
2723 |
| - | |
2724 |
| - | |
2725 |
| - | |
2726 |
| - | |
2727 |
| - | |
2728 |
| - | |
2729 |
| - | |
2730 |
| - | |
2731 |
| - | |
2732 |
| - | |
2733 |
| - | |
2734 |
| - | |
2735 |
| - | |
2736 |
| - | |
2737 |
| - | |
2738 |
| - | |
2739 |
| - | |
2740 |
| - | |
2741 |
| - | |
2742 |
| - | |
2743 |
| - | |
2744 |
| - | |
2745 |
| - | |
2746 |
| - | |
2747 |
| - | |
2748 |
| - | |
2749 |
| - | |
2750 |
| - | |
2751 |
| - | |
2752 |
| - | |
2753 |
| - | |
2754 |
| - | |
2755 |
| - | |
2756 |
| - | |
| 2712 | + | |
| 2713 | + | |
2757 | 2714 |
| |
2758 | 2715 |
| |
2759 | 2716 |
| |
2760 |
| - | |
2761 |
| - | |
| 2717 | + | |
| 2718 | + | |
2762 | 2719 |
| |
2763 | 2720 |
| |
2764 | 2721 |
| |
|
Lines changed: 96 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
497 | 497 |
| |
498 | 498 |
| |
499 | 499 |
| |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + | |
| 508 | + | |
| 509 | + | |
| 510 | + | |
| 511 | + | |
| 512 | + | |
| 513 | + | |
| 514 | + | |
| 515 | + | |
| 516 | + | |
| 517 | + | |
| 518 | + | |
| 519 | + | |
| 520 | + | |
| 521 | + | |
| 522 | + | |
| 523 | + | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | + | |
| 528 | + | |
| 529 | + | |
| 530 | + | |
| 531 | + | |
| 532 | + | |
| 533 | + | |
| 534 | + | |
| 535 | + | |
| 536 | + | |
| 537 | + | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + | |
| 544 | + | |
| 545 | + | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
| 549 | + | |
| 550 | + | |
| 551 | + | |
| 552 | + | |
| 553 | + | |
| 554 | + | |
| 555 | + | |
| 556 | + | |
| 557 | + | |
| 558 | + | |
| 559 | + | |
| 560 | + | |
| 561 | + | |
| 562 | + | |
| 563 | + | |
| 564 | + | |
| 565 | + | |
| 566 | + | |
| 567 | + | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
| 586 | + | |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | + | |
| 594 | + | |
| 595 | + | |
500 | 596 |
| |
501 | 597 |
| |
502 | 598 |
| |
|
Lines changed: 3 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
| 15 | + | |
| 16 | + | |
15 | 17 |
| |
16 | 18 |
| |
17 | 19 |
| |
| |||
37 | 39 |
| |
38 | 40 |
| |
39 | 41 |
| |
| 42 | + | |
40 | 43 |
| |
41 | 44 |
| |
42 | 45 |
| |
|
0 commit comments
Comments
(0)