1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-14 18:42:34 +03:00
Commit Graph

13017 Commits

Author SHA1 Message Date
10fb290aca Document the system attributes ctid and tableoid, which for some reason
were never yet mentioned anywhere in our documentation.  Improve
explanations of the other system attributes, too.
2001-01-08 22:07:47 +00:00
6334ef86a7 Document that we don't support ORDER BY with general expressions on
the output of UNION/INTERSECT/EXCEPT.
2001-01-08 21:30:37 +00:00
005ad6cdd6 Add rudimentary section about controlling kernel's file and process limits. 2001-01-08 21:01:54 +00:00
8c3d7715bc Simplify rules to build man pages so they run a lot faster and create less
noise.
2001-01-06 16:54:16 +00:00
bc0afb715d EXECUTE documentation, from "Robert B. Easter" <reaster@comptechnews.com>.
I threw in spell check run over the whole file.
2001-01-06 12:26:08 +00:00
3942ee389c Update section on SQL syntax. (Still a lot to be done though.) Add
appendix with comprehensive list of key words.
2001-01-06 11:58:56 +00:00
96bd67f61d Bring CREATE RULE reference page into some semblance of agreement with
what's actually implemented.
2001-01-06 04:14:35 +00:00
2fb6cc9045 Remove not-really-standard implementation of CREATE TABLE's UNDER clause,
and revert documentation to describe the existing INHERITS clause
instead, per recent discussion in pghackers.  Also fix implementation
of SQL_inheritance SET variable: it is not cool to look at this var
during the initial parsing phase, only during parse_analyze().  See
recent bug report concerning misinterpretation of date constants just
after a SET TIMEZONE command.  gram.y really has to be an invariant
transformation of the query string to a raw parsetree; anything that
can vary with time must be done during parse analysis.
2001-01-05 06:34:23 +00:00
676cf18c5b New file format for COPY BINARY, in accordance with pghackers discussions
of early December 2000.  COPY BINARY is now TOAST-safe.
2001-01-03 20:04:10 +00:00
3bdadd0426 Document tuple ordering differences as a possible cause of
regression test 'failures'.
2001-01-02 05:56:02 +00:00
eedfac64dd Correct UNDER syntax. 2000-12-30 19:11:45 +00:00
59e2bf3c69 Correct UNDER syntax. 2000-12-30 19:00:11 +00:00
8188a9bebf Refinements 2000-12-30 17:11:32 +00:00
2783bd50da Add mention of sysctl(8) for IPC tuning on Linux. 2000-12-30 15:03:09 +00:00
0a8da82576 Correct erroneous documentation of PQsetnonblocking(). 2000-12-28 00:16:11 +00:00
f4e995e17f Add id attribute to sect1 tag. 2000-12-26 20:12:49 +00:00
fa1640aea0 Fix some cross reference links. 2000-12-26 00:10:37 +00:00
dccfd74935 Refine some things to create better looking man pages. 2000-12-25 23:15:27 +00:00
37c55f9849 Some of the stuff documented here hasn't existed since Postgres95. 2000-12-23 16:24:29 +00:00
de3379503a Remove unused file (the information is already contained elsewhere). 2000-12-23 11:10:55 +00:00
7558da669f Make use of <email> tag for marking up email addresses. 2000-12-22 21:51:58 +00:00
387d43113c Avoid using the terms 'installation', 'site', or 'instance' when referring
to the thing you get from running initdb.  That's called a database cluster
(per SQL).
2000-12-22 19:31:56 +00:00
1b555ce791 Replace incorrect uses of 'which' with 'that'. (so-called "wicked which") 2000-12-22 18:57:50 +00:00
f4eef66741 Fix broken markup. 2000-12-22 18:06:46 +00:00
61784c54b5 Change default output formatting for CIDR to be unabbreviated, per
recommendation from Paul Vixie.  Add a new abbrev() function to produce
abbreviated format as text.  No forced initdb, but new function is not
available unless you do an initdb or add the pg_proc row manually.
2000-12-22 18:00:24 +00:00
b2145e9365 Get rid of the little "v"s in front of version numbers, substituting the
full word "version" where appropriate.
2000-12-21 22:55:27 +00:00
8f89113d4b Updates 2000-12-21 22:30:39 +00:00
2905a2c54b >openssl req -new -text -out cert.req (you will have to enter a password)
>mv privkey.pem cert.pem.pw
  >openssl rsa -in cert.pem.pw -out cert.pem  (this removes the password)
  >openssl req -x509 -in cert.req -text -key cert.pem -out cert.cert

then

  cp cert.pem $PGDATA/server.key
  cp cert.cert $PGDATA/server.crt

Thank you; this works.

Oliver Elphick
2000-12-21 19:08:05 +00:00
1db9cce39f responce->response
Alfred Perlstein
2000-12-21 18:47:05 +00:00
e4d97cb70e Update info for BeOS and MacOS-X-darwin as supported platforms. 2000-12-20 17:23:39 +00:00
1d46fb8035 Fix typo. 2000-12-20 15:44:00 +00:00
c6fc6cfa08 On Sunday 17 December 2000 15:07, Bruce Momjian wrote:
> We need additions to alter_table.sgml for the new OWNER option mention
> in the features list.

Here it is.

--
Mark Hollomon
2000-12-20 03:19:24 +00:00
827414276c Add mention of Alpha 2000-12-20 03:02:52 +00:00
e19f386116 Holloman -> Hollomon. Sorry. 2000-12-20 02:15:20 +00:00
89996974a7 Add description about automatic encoding conversion
between Unicode and other encodings.
2000-12-20 00:44:49 +00:00
28e9e9a24e Rename --accounts-only to --globals-only, polish documentation. 2000-12-19 22:12:47 +00:00
f824d4a363 Polish PL/Perl documentation. The README file got shrunk to being a
pointer into the real documentation.
2000-12-19 18:16:26 +00:00
f9698a938f Correct results of usage examples. 2000-12-19 17:35:46 +00:00
e34d442dbb Mention fallback case for type coercion in description
of function resolution procedure.
2000-12-19 00:54:59 +00:00
e4eb91048c Document the array_dims() function, and make some other small improvements
in the docs for arrays.
2000-12-18 23:39:37 +00:00
cf35a70495 Large objects in single "table". 2000-12-18 04:32:09 +00:00
708c1114ea Updates from Tom Lane. 2000-12-18 04:20:44 +00:00
8c8ed4f456 Add missing tags. 2000-12-17 17:50:46 +00:00
ec6a367e90 Bump version to 7.1. (No "beta1", since we're just going to forget to
change it again anyway.)
2000-12-17 11:25:58 +00:00
a4e29286b3 Update SysV IPC information. 2000-12-17 11:22:00 +00:00
7b9fe96812 Update type-coercion discussions to reflect current reality. 2000-12-17 05:55:26 +00:00
c501e9aabe Misc. cleanups. 2000-12-17 05:50:23 +00:00
96ff0cb0c4 Outer join updates, miscellaneous polishing. 2000-12-17 05:47:57 +00:00
0c2629efaa Update some obsolete info about GEQO. 2000-12-16 22:44:47 +00:00
a238cb5a8a Add 7.1 features list 2000-12-16 20:12:42 +00:00