summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
2000-08-23Fix several <ulink> tags which refer to e-mail addressesThomas G. Lockhart
but were missing the "mailto:" prefix. Fix typo. Thanks to Neil Conway <nconway@klamath.dyndns.org> for the heads-up.
2000-08-21fmgr interface mopup work. Use new DatumGetBool and BoolGetDatumTom Lane
macros where appropriate (the code used to have several different ways of doing that, including Int32, Int8, UInt8, ...). Remove last few references to float32 and float64 typedefs --- it's all float4/float8 now. The typedefs themselves should probably stay in c.h for a release or two, though, to avoid breaking user-written C functions.
2000-08-12Mop-up for removal of ':' and ';' operators ... like, say, actuallyTom Lane
take 'em out of pg_operator. Also remove from scan.l's set of legal operator characters. Update documentation.
2000-08-11Make debug_assertions default to ON, when compiled in at all, forTom Lane
backwards compatibility with old behavior.
2000-08-07Fix incorrect example of CAST syntax (was missing required parentheses).Tom Lane
2000-08-07Clean up bogosities in use of random(3) and srandom(3) --- do not assumeTom Lane
that RAND_MAX applies to them, since it doesn't. Instead add a config.h parameter MAX_RANDOM_VALUE. This is currently set at 2^31-1 but could be auto-configured if that ever proves necessary. Also fix some outright bugs like calling srand() where srandom() is appropriate.
2000-07-29PATH and POLYGON datatypes are now TOASTable. Associated functionsTom Lane
updated to new fmgr style. Deleted hoary old functions for compatibility with pre-6.1 representations of these datatypes.
2000-07-27Update FAQ.Bruce Momjian
2000-07-27Update FAQ.Bruce Momjian
2000-07-27Update FAQ.Bruce Momjian
2000-07-26Update FAQ.Bruce Momjian
2000-07-26Update FAQ.Bruce Momjian
2000-07-26Update FAQ.Bruce Momjian
2000-07-24more doc cleanupsBruce Momjian
2000-07-22Shed some light onto SysV IPC configuration.Peter Eisentraut
2000-07-22typosPeter Eisentraut
2000-07-22spell cleanupsBruce Momjian
2000-07-22spell cleanupsBruce Momjian
2000-07-22CleanupsBruce Momjian
2000-07-21More doc cleanups, from book.Bruce Momjian
2000-07-21More doc cleanupsBruce Momjian
2000-07-21Update for sh.Bruce Momjian
2000-07-21cleanupBruce Momjian
2000-07-21cleanupBruce Momjian
2000-07-21CleanupBruce Momjian
2000-07-21CleanujpBruce Momjian
2000-07-21CleanupBruce Momjian
2000-07-21reference page cleanupBruce Momjian
2000-07-21Clean up flagsBruce Momjian
2000-07-21Fix postgres -A options flagsBruce Momjian
2000-07-21Update installation instructions to new realities. Combined into one file.Peter Eisentraut
Improved automation of INSTALL file generation.
2000-07-21Change > prompt to $Bruce Momjian
2000-07-21Change prompt % to $.Bruce Momjian
2000-07-20Update FAQ.Bruce Momjian
2000-07-20Update FAQ.Bruce Momjian
2000-07-20Update FAQ.Bruce Momjian
2000-07-20Update FAQ.Bruce Momjian
2000-07-20Update FAQ.Bruce Momjian
2000-07-20Update FAQ.Bruce Momjian
2000-07-20Update FAQ.Bruce Momjian
2000-07-17Correct erroneous explanation of DEADLOCK_TIMEOUT configuration setting.Tom Lane
2000-07-17Update aggregate-function docs for STDDEV, VARIANCE.Tom Lane
2000-07-17Revise aggregate functions per earlier discussions in pghackers.Tom Lane
There's now only one transition value and transition function. NULL handling in aggregates is a lot cleaner. Also, use Numeric accumulators instead of integer accumulators for sum/avg on integer datatypes --- this avoids overflow at the cost of being a little slower. Implement VARIANCE() and STDDEV() aggregates in the standard backend. Also, enable new LIKE selectivity estimators by default. Unrelated change, but as long as I had to force initdb anyway...
2000-07-16Automatic dependency trackingPeter Eisentraut
The .DEFAULT rule in backend/Makefile is harmful -- removed. Replace `::' rules by `:'.
2000-07-16Incorporate README.fsync into main documentation bodyPeter Eisentraut
2000-07-15Revise locale and Kerberos documentationPeter Eisentraut
2000-07-14Fix munged markup from previous commit.Thomas G. Lockhart
2000-07-14Save changes from last docs release.Thomas G. Lockhart
2000-07-14Add information on SET SESSION CHARACTERISTICS.Thomas G. Lockhart
Fix references to pg_hba.conf(5) since that is no longer a man page. Make minor repairs to "Compatibility" subsections.
2000-07-14Update docs for TIME WITHOUT TIME ZONE.Thomas G. Lockhart
Add information on SET SESSION CHARACTERISTICS. Fix references to pg_hba.conf(5) since that is no longer a man page.