forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit653fa21
committed
Clarify dynamic pl/pgsql item and add URLs. Restructure server-side
section into PL/pgSQL and non-PL/pgSQL sections:< o Fix PL/pgSQL RENAME to work on variables other than OLD/NEW< o Allow function parameters to be passed by name,< get_employee_salary(emp_id => 12345, tax_year => 2001)< o Add Oracle-style packages< o Add table function support to pltcl, plpython< o Add capability to create and call PROCEDURES< o Allow PL/pgSQL to handle %TYPE arrays, e.g. tab.col%TYPE[]< o Allow function argument names to be statements from PL/PgSQL< o Add MOVE to PL/pgSQL< o Add support for polymorphic arguments and return types to< languages other than PL/PgSQL< o Add support for OUT and INOUT parameters to languages other< than PL/PgSQL< o Add single-step debugging of PL/PgSQL functions< o Allow PL/PgSQL to support WITH HOLD cursors< o Allow PL/PgSQL RETURN to return row or record functions<<http://archives.postgresql.org/pgsql-patches/2005-11/msg00045.php> o PL/pgSQL> o Fix RENAME to work on variables other than OLD/NEW> o Allow function parameters to be passed by name,> get_employee_salary(emp_id => 12345, tax_year => 2001)> o Add Oracle-style packages> o Allow handling of %TYPE arrays, e.g. tab.col%TYPE[]> o Allow listing of record column names, and access to> record columns via variables, e.g. columns := r.(*),> tval2 := r.(colname)>>http://archives.postgresql.org/pgsql-patches/2005-07/msg00458.php>http://archives.postgresql.org/pgsql-patches/2006-05/msg00302.php>http://archives.postgresql.org/pgsql-patches/2006-06/msg00031.php>> o Add MOVE> o Add single-step debugging of functions> o Add support for WITH HOLD cursors> o Allow PL/RETURN to return row or record functions>>http://archives.postgresql.org/pgsql-patches/2005-11/msg00045.php>>> o Other> o Add table function support to pltcl, plpython> o Add support for polymorphic arguments and return types to> languages other than PL/PgSQL> o Add capability to create and call PROCEDURES> o Add support for OUT and INOUT parameters to languages other> than PL/PgSQL1 parentfce5033 commit653fa21
2 files changed
+60
-37
lines changedLines changed: 30 additions & 19 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 |
| |
| |||
668 | 668 |
| |
669 | 669 |
| |
670 | 670 |
| |
671 |
| - | |
672 |
| - | |
673 |
| - | |
674 |
| - | |
675 |
| - | |
676 |
| - | |
677 |
| - | |
678 |
| - | |
679 |
| - | |
680 |
| - | |
681 |
| - | |
682 |
| - | |
683 |
| - | |
684 |
| - | |
685 |
| - | |
686 |
| - | |
687 |
| - | |
688 |
| - | |
| 671 | + | |
| 672 | + | |
| 673 | + | |
| 674 | + | |
| 675 | + | |
| 676 | + | |
| 677 | + | |
| 678 | + | |
| 679 | + | |
| 680 | + | |
| 681 | + | |
| 682 | + | |
| 683 | + | |
| 684 | + | |
| 685 | + | |
| 686 | + | |
| 687 | + | |
| 688 | + | |
| 689 | + | |
| 690 | + | |
| 691 | + | |
| 692 | + | |
| 693 | + | |
| 694 | + | |
| 695 | + | |
| 696 | + | |
| 697 | + | |
| 698 | + | |
| 699 | + | |
689 | 700 |
| |
690 | 701 |
| |
691 | 702 |
| |
|
Lines changed: 30 additions & 18 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 |
| |
| |||
604 | 604 |
| |
605 | 605 |
| |
606 | 606 |
| |
607 |
| - | |
608 |
| - | |
609 |
| - | |
610 |
| - | |
611 |
| - | |
612 |
| - | |
613 |
| - | |
614 |
| - | |
615 |
| - | |
616 |
| - | |
617 |
| - | |
618 |
| - | |
619 |
| - | |
620 |
| - | |
621 |
| - | |
622 |
| - | |
623 |
| - | |
| 607 | + | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | + | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | + | |
| 618 | + | |
| 619 | + | |
| 620 | + | |
| 621 | + | |
| 622 | + | |
| 623 | + | |
| 624 | + | |
| 625 | + | |
624 | 626 |
| |
| 627 | + | |
| 628 | + | |
| 629 | + | |
| 630 | + | |
| 631 | + | |
| 632 | + | |
| 633 | + | |
| 634 | + | |
| 635 | + | |
| 636 | + | |
625 | 637 |
| |
626 | 638 |
| |
627 | 639 |
| |
|
0 commit comments
Comments
(0)