1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Update all FAQ's for 7.3.4.

This commit is contained in:
Bruce Momjian
2003-07-23 04:13:13 +00:00
parent 1ecc0fdb00
commit 79b0da6e7c
15 changed files with 738 additions and 512 deletions

View File

@ -12,7 +12,7 @@
<H1>Developer's Frequently Asked Questions (FAQ) for
PostgreSQL</H1>
<P>Last updated: Fri Feb 14 08:59:10 EST 2003</P>
<P>Last updated: Mon Jun 2 00:34:39 EDT 2003</P>
<P>Current maintainer: Bruce Momjian (<A href=
"mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)<BR>
@ -281,22 +281,29 @@
less -x4
emacs:
M-x set-variable tab-width
or
; Cmd to set tab stops &amp; indenting for working with PostgreSQL code
(c-add-style "pgsql"
'("bsd"
(indent-tabs-mode . t)
(c-basic-offset . 4)
(tab-width . 4)
(c-offsets-alist .
((case-label . +))))
t) ; t = set this mode on
(c-add-style "pgsql"
'("bsd"
(indent-tabs-mode . t)
(c-basic-offset . 4)
(tab-width . 4)
(c-offsets-alist .
((case-label . +)))
)
nil ) ; t = set this style, nil = don't
(defun pgsql-c-mode ()
(c-mode)
(c-set-style "pgsql")
)
and add this to your autoload list (modify file path in macro):
(setq auto-mode-alist
(cons '("\\`/usr/local/src/pgsql/.*\\.[chyl]\\'" . pgsql-c-mode)
auto-mode-alist))
(setq auto-mode-alist
(cons '("\\`/home/andrew/pgsql/.*\\.[chyl]\\'" . pgsql-c-mode)
auto-mode-alist))
or
/*
* Local variables:
@ -605,7 +612,9 @@
href="http://webstore.ansi.org/ansidocstore/default.asp">
http://webstore.ansi.org/ansidocstore/default.asp</a>. The main
standards documents are ANSI X3.135-1992 for SQL92 and ANSI/ISO/IEC
9075-2-1999 for SQL99.</P>
9075-2-1999 for SQL99. The SQL 200X standards are at <a href=
"ftp://sqlstandards.org/SC32/WG3/Progression_Documents/FCD">
ftp://sqlstandards.org/SC32/WG3/Progression_Documents/FCD</A></P>
<P>A summary of these standards is at <a
href="http://dbs.uni-leipzig.de/en/lokal/standards.pdf">