mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
plperl:
Allow conversion from perl to postgresql array in OUT parameters. Second, allow hash form output from procedures with one OUT argument. Pavel Stehule
This commit is contained in:
@ -13,7 +13,7 @@
|
||||
<H1>Developer's Frequently Asked Questions (FAQ) for
|
||||
PostgreSQL</H1>
|
||||
|
||||
<P>Last updated: Fri Aug 11 15:15:40 EDT 2006</P>
|
||||
<P>Last updated: Fri Aug 11 15:34:12 EDT 2006</P>
|
||||
|
||||
<P>Current maintainer: Bruce Momjian (<A href=
|
||||
"mailto:bruce@momjian.us">bruce@momjian.us</A>)<BR>
|
||||
@ -374,7 +374,14 @@
|
||||
|
||||
or
|
||||
|
||||
(c-add-style "pgsql"
|
||||
(add-hook 'c-mode-hook
|
||||
(function
|
||||
(lambda nil
|
||||
(if (string-match "pgsql" buffer-file-name)
|
||||
(progn
|
||||
(c-set-style "bsd")
|
||||
(setq c-basic-offset 4)
|
||||
(setq tab-width (c-add-style "pgsql"
|
||||
'("bsd"
|
||||
(indent-tabs-mode . t)
|
||||
(c-basic-offset . 4)
|
||||
|
Reference in New Issue
Block a user