aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Update pgindent for 7.0 releaseBruce Momjian2000-04-11
|
* Thomas pointed out this bug in my non-blocking stuff.Bruce Momjian2000-04-11
| | | | Alfred Perlstein
* Allow libpq++ compile to failBruce Momjian2000-04-11
|
* disable plperlBruce Momjian2000-04-11
|
* Clean up temp files from \e.Bruce Momjian2000-04-11
|
* Uppercase pg_options paramBruce Momjian2000-04-11
|
* Internal functions to support newest ODBC driver {fn ...} conventions.Thomas G. Lockhart2000-04-11
| | | | | Includes compiled code to support pre-7.0 backends, but for 7.0 only requires executing odbc.sql.
* Attached is are diffs for CREATE/ALTER table doc I'veBruce Momjian2000-04-11
| | | | | | | forgotten in my mailbox (sorry). Haven't tried to apply and since I don't have working sgml stuff cannot check. Jan
* Update porting list.Thomas G. Lockhart2000-04-11
| | | | Fix markup to get clean compile.
* Update for default ISO date styleBruce Momjian2000-04-11
|
* Update SET manual pages for pg_options.Bruce Momjian2000-04-11
|
* Tweak smgrblindwrt per advice from Vadim: add parameter indicatingTom Lane2000-04-10
| | | | | | whether to do fsync or not, and if so (which should be seldom) just do the fsync immediately. This way we need not build data structures in md.c/fd.c for blind writes.
* The constant in backend/utils/misc/trace.c, line 32 limits the length ofBruce Momjian2000-04-10
| | | | | | | | | logged queries to 1024, truncating longer queries. That is about half of the size I need (I have a union that is 2K long). Can someone consider bumping it to 4K or so? Patch attached... Regards, Ed Loehr
* No revoke on indexes any moreBruce Momjian2000-04-10
|
* Fix an Assert bug(was my fault) pointed out by Tom Lane.Hiroshi Inoue2000-04-10
|
* UPdate faq/Bruce Momjian2000-04-09
|
* No more need to create groups manually.Bruce Momjian2000-04-09
|
* No grant on indexes.Bruce Momjian2000-04-09
|
* Buffer manager modifications to keep a local buffer-dirtied bit as wellTom Lane2000-04-09
| | | | | | | | as a shared dirtybit for each shared buffer. The shared dirtybit still controls writing the buffer, but the local bit controls whether we need to fsync the buffer's file. This arrangement fixes a bug that allowed some required fsyncs to be missed, and should improve performance as well. For more info see my post of same date on pghackers.
* Further tweaking of indexscan cost estimates.Tom Lane2000-04-09
|
* Add explanation about 'Unrecognized variable client_encoding'Tom Lane2000-04-08
| | | | message at startup.
* Document FSYNC in pg_options sgml file.Bruce Momjian2000-04-08
|
* Add new pg_options.sample file.Bruce Momjian2000-04-08
|
* Tweak TypeCategory to treat new BIT types as of STRING category, ratherTom Lane2000-04-08
| | | | | | | than not knowing what they are at all. Perhaps they should have their own type category? Hard to say. In the meantime, doing it this way allows SELECT 'unknown' || 'unknown' to continue being resolved as textcat, instead of spitting out an ambiguous-operator error.
* I think we want machine pattern i.86 not i386 --- looks like config.guessTom Lane2000-04-08
| | | | could output several different high digits on most PC Unixen.
* Add colo to display at end of initdb.Bruce Momjian2000-04-08
|
* Modify pgbench.c not to depend on configure, since it's not shipped with one.Tom Lane2000-04-08
|
* *** empty log message ***Michael Meskes2000-04-08
|
* Link already-existing COMMENT and REINDEX command docs into documentation.Tom Lane2000-04-08
|
* Fix relcache refcount leakage when inv_drop is appliedTom Lane2000-04-08
| | | | to a non-LO relation.
* Mention cube root.Tom Lane2000-04-08
|
* updateBruce Momjian2000-04-08
|
* Fix cross-references, update examples, copy-edit.Tom Lane2000-04-08
|
* Add reference page for pg_ctl.Thomas G. Lockhart2000-04-08
|
* Update some porting info.Thomas G. Lockhart2000-04-08
| | | | Add mention of transcendental functions.
* Add zpbit and varbit data types from Adrian JoubertThomas G. Lockhart2000-04-08
| | | | <a.joubert@albourne.com>.
* Update for to_char change.Tom Lane2000-04-08
|
* Tweak parallel test script so that command line options for postmasterTom Lane2000-04-08
| | | | can be set via environment variable PMOPTIONS. Default is -o -F.
* Add copyObject logic for TruncateStmt and a few other utility-statementTom Lane2000-04-08
| | | | | | | | parse node types. This allows these statements to be placed in a plpgsql function. Also, see to it that statement types not handled by the copy logic will draw an appropriate elog(ERROR), instead of leaving a null pointer that will cause coredump later on. More utility statements could be added if anyone felt like turning the crank.
* More man updates to fix bad tagsBruce Momjian2000-04-07
|
* Update create_rule manual page.Bruce Momjian2000-04-07
|
* resultmap additions for solaris x86 ...Marc G. Fournier2000-04-07
|
* Use initdb --noclean so that test database is available for examinationTom Lane2000-04-07
| | | | if initdb fails.
* Again update of rule manual page.Bruce Momjian2000-04-07
|
* Update rule examplesBruce Momjian2000-04-07
|
* Remove mention of INSTANCE rule system, because it is gone.Bruce Momjian2000-04-07
|
* Add transcendental math functions (sine, cosine, etc)Thomas G. Lockhart2000-04-07
| | | | | | | | | | | | | | | | Add a random number generator and seed setter (random(), SET SEED) Fix up the interval*float8 math to carry partial months into the time field. Add float8*interval so we have symmetry in the available math. Fix the parser and define.c to accept SQL92 types as field arguments. Fix the parser to accept SQL92 types for CREATE TYPE, etc. This is necessary to allow... Bit/varbit support in contrib/bit cleaned up to compile and load cleanly. Still needs some work before final release. Implement the "SOME" keyword as a synonym for "ANY" per SQL92. Implement ascii(text), ichar(int4), repeat(text,int4) to help support the ODBC driver. Enable the TRUNCATE() function mapping in the ODBC driver.
* Document new SET SEED command.Thomas G. Lockhart2000-04-07
|
* Fix path to initdb in installation instructions.Thomas G. Lockhart2000-04-07
| | | | General cleanup for 7.0.
* Clean up directory to compile and run on my Linux box at least.Thomas G. Lockhart2000-04-07
| | | | Note that there is some trouble with inconsistant input/output formats.