- Notifications
You must be signed in to change notification settings - Fork5
Commit01798a0
committed
Add batch mode, make new libpq section:
< * Add a libpq function to support Parse/DescribeStatement capability< * Add PQescapeIdentifier() to libpq< * Prevent PQfnumber() from lowercasing unquoted the column name<< PQfnumber() should never have been doing lowercasing, but historically< it has so we need a way to prevent it<648a642,661>>> libpq>> o Add a function to support Parse/DescribeStatement capability> o Add PQescapeIdentifier()> o Prevent PQfnumber() from lowercasing unquoted the column name>> PQfnumber() should never have been doing lowercasing, but> historically it has so we need a way to prevent it>> o Allow query results to be automatically batched to the client>> Currently, all query results are transfered to the libpq> client before libpq makes the results available to the> application. This feature would allow the application to make> use of the first result rows while the rest are transfered, or> held on the server waiting for them to be requested by libpq.> One complexity is that a query like SELECT 1/col could error> out mid-way through the result set.1 parent2feb930 commit01798a0
2 files changed
+42
-16
lines changedLines changed: 21 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 |
| - | |
| 5 | + | |
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
| |||
553 | 553 |
| |
554 | 554 |
| |
555 | 555 |
| |
556 |
| - | |
557 |
| - | |
558 |
| - | |
559 |
| - | |
560 |
| - | |
561 |
| - | |
562 |
| - | |
563 | 556 |
| |
564 | 557 |
| |
565 | 558 |
| |
| |||
648 | 641 |
| |
649 | 642 |
| |
650 | 643 |
| |
| 644 | + | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
| 648 | + | |
| 649 | + | |
| 650 | + | |
| 651 | + | |
| 652 | + | |
| 653 | + | |
| 654 | + | |
| 655 | + | |
| 656 | + | |
| 657 | + | |
| 658 | + | |
| 659 | + | |
| 660 | + | |
| 661 | + | |
| 662 | + | |
| 663 | + | |
651 | 664 |
| |
652 | 665 |
| |
653 | 666 |
| |
|
Lines changed: 21 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
| |||
505 | 505 |
| |
506 | 506 |
| |
507 | 507 |
| |
508 |
| - | |
509 |
| - | |
510 |
| - | |
511 |
| - | |
512 |
| - | |
513 |
| - | |
514 |
| - | |
| 508 | + | |
515 | 509 |
| |
516 | 510 |
| |
517 | 511 |
| |
| |||
590 | 584 |
| |
591 | 585 |
| |
592 | 586 |
| |
| 587 | + | |
| 588 | + | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | + | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + | |
| 600 | + | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
593 | 606 |
| |
594 | 607 |
| |
595 | 608 |
| |
|
0 commit comments
Comments
(0)