summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
2001-01-09Apply proper sql.sgml change.Bruce Momjian
2001-01-09Attached is a doc patch for doc/src/sgml/sql.sgml.Bruce Momjian
It adds information about SQL JOIN that is implemented in 7.1. -- -------- Robert B. Easter
2001-01-09A patch for doc/src/sgml/plsql.sgml to add a little more info about PL/pgSQLBruce Momjian
EXECUTE. -- -------- Robert B. Easter
2001-01-09Approaching the current documentation from a position of ignorance, IBruce Momjian
find it ambiguous. I propose something along the lines of the following patch to clarify it. Thanks. (Alternatively, perhaps the code could maintain a count of nested calls to SPI_connect/SPI_finish. But I didn't try to write that patch.) Ian Lance Taylor
2001-01-08Document the system attributes ctid and tableoid, which for some reasonTom Lane
were never yet mentioned anywhere in our documentation. Improve explanations of the other system attributes, too.
2001-01-08Document that we don't support ORDER BY with general expressions onTom Lane
the output of UNION/INTERSECT/EXCEPT.
2001-01-08Add rudimentary section about controlling kernel's file and process limits.Peter Eisentraut
2001-01-06Simplify rules to build man pages so they run a lot faster and create lessPeter Eisentraut
noise.
2001-01-06EXECUTE documentation, from "Robert B. Easter" <reaster@comptechnews.com>.Peter Eisentraut
I threw in spell check run over the whole file.
2001-01-06Update section on SQL syntax. (Still a lot to be done though.) AddPeter Eisentraut
appendix with comprehensive list of key words.
2001-01-06Bring CREATE RULE reference page into some semblance of agreement withTom Lane
what's actually implemented.
2001-01-05Remove not-really-standard implementation of CREATE TABLE's UNDER clause,Tom Lane
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-03New file format for COPY BINARY, in accordance with pghackers discussionsTom Lane
of early December 2000. COPY BINARY is now TOAST-safe.
2001-01-02Document tuple ordering differences as a possible cause ofTom Lane
regression test 'failures'.
2000-12-30Correct UNDER syntax.Peter Eisentraut
2000-12-30Correct UNDER syntax.Peter Eisentraut
2000-12-30RefinementsPeter Eisentraut
2000-12-30Add mention of sysctl(8) for IPC tuning on Linux.Peter Eisentraut
2000-12-28Correct erroneous documentation of PQsetnonblocking().Tom Lane
2000-12-26Add id attribute to sect1 tag.Peter Eisentraut
2000-12-26Fix some cross reference links.Peter Eisentraut
2000-12-25Refine some things to create better looking man pages.Peter Eisentraut
2000-12-23Some of the stuff documented here hasn't existed since Postgres95.Peter Eisentraut
2000-12-23Remove unused file (the information is already contained elsewhere).Peter Eisentraut
2000-12-22Make use of <email> tag for marking up email addresses.Peter Eisentraut
2000-12-22Avoid using the terms 'installation', 'site', or 'instance' when referringPeter Eisentraut
to the thing you get from running initdb. That's called a database cluster (per SQL).
2000-12-22Replace incorrect uses of 'which' with 'that'. (so-called "wicked which")Peter Eisentraut
2000-12-22Fix broken markup.Tom Lane
2000-12-22Change default output formatting for CIDR to be unabbreviated, perTom Lane
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-21Get rid of the little "v"s in front of version numbers, substituting thePeter Eisentraut
full word "version" where appropriate.
2000-12-21UpdatesPeter Eisentraut
2000-12-21 >openssl req -new -text -out cert.req (you will have to enter a password)Bruce Momjian
>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-21responce->responseBruce Momjian
Alfred Perlstein
2000-12-20Update info for BeOS and MacOS-X-darwin as supported platforms.Thomas G. Lockhart
2000-12-20Fix typo.Bruce Momjian
2000-12-20On Sunday 17 December 2000 15:07, Bruce Momjian wrote:Bruce Momjian
> We need additions to alter_table.sgml for the new OWNER option mention > in the features list. Here it is. -- Mark Hollomon
2000-12-20Add mention of AlphaBruce Momjian
2000-12-20Holloman -> Hollomon. Sorry.Bruce Momjian
2000-12-20Add description about automatic encoding conversionTatsuo Ishii
between Unicode and other encodings.
2000-12-19Rename --accounts-only to --globals-only, polish documentation.Peter Eisentraut
2000-12-19Polish PL/Perl documentation. The README file got shrunk to being aPeter Eisentraut
pointer into the real documentation.
2000-12-19Correct results of usage examples.Peter Eisentraut
2000-12-19Mention fallback case for type coercion in descriptionTom Lane
of function resolution procedure.
2000-12-18Document the array_dims() function, and make some other small improvementsTom Lane
in the docs for arrays.
2000-12-18Large objects in single "table".Bruce Momjian
2000-12-18Updates from Tom Lane.Bruce Momjian
2000-12-17Add missing tags.Peter Eisentraut
2000-12-17Bump version to 7.1. (No "beta1", since we're just going to forget toPeter Eisentraut
change it again anyway.)
2000-12-17Update SysV IPC information.Peter Eisentraut
2000-12-17Update type-coercion discussions to reflect current reality.Tom Lane