aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Mention new jdbc mailing list instead of interfaces list.Bruce Momjian2001-05-09
|
* If it's true that the ALTER TABLE x ADD CONSTRAINT x CHECK (x) syntax isBruce Momjian2001-05-09
| | | | | | | supported in 7.1.1, here is a patch to that alter_table.sgml that documents it. Christopher Kings-Lynne
* Cause planner to make use of average-column-width statistic that is nowTom Lane2001-05-09
| | | | | | | | collected by ANALYZE. Also, add some modest amount of intelligence to guesses that are used for varlena columns in the absence of any ANALYZE statistics. The 'width' reported by EXPLAIN is finally something less than totally bogus for varlena columns ... and, in consequence, hashjoin estimating should be a little better ...
* Update runtime shared memory computations.Bruce Momjian2001-05-08
|
* Add SET SESSION AUTHORIZATION command.Peter Eisentraut2001-05-08
|
* Mention SHELL usage in initdb.Bruce Momjian2001-05-08
|
* Append and SubqueryScan nodes were not passing changed-parameter signals downTom Lane2001-05-08
| | | | | | | | | to their children, leading to misbehavior if they had any children that paid attention to chgParam (most plan node types don't). Append's bug has been there a long time, but nobody had noticed because it used to be difficult to create a query where an Append would be used below the top level of a plan; so there were never any parameters getting passed down. SubqueryScan is new in 7.1 ... and I'd modeled its behavior on Append :-(
* Need to factor out strdup.o for separate treatment since it's in aPeter Eisentraut2001-05-08
| | | | | different directory. This makes dependency tracking work and copes with compilers that don't suport -c and -o together.
* Remove pgadmin.sgml file.Bruce Momjian2001-05-08
|
* Add new emails to file.Bruce Momjian2001-05-08
|
* Remove LISP manual reference. Added to web "interfaces" page.Bruce Momjian2001-05-08
|
* Update TODO list.Bruce Momjian2001-05-08
|
* Small cleanup.Bruce Momjian2001-05-08
|
* drop_function.sgml:Bruce Momjian2001-05-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | =================== In Notes: Refer to CREATE FUNCTION for information on creating aggregate functions. ^^^^^^^^^^^^^^^^^^^ I assume it must read C function instead. In Compatibility SQL/PSM: SQL/PSM is a proposed standard. We had that before: remove proposed. drop_index.sgml: ================ <REFNAME>: Removes existing indexes from a database as far as I can see index should be singular. The command description is written as if only one index can be removed at a time. Interestingly enough, in v7.0.2 it was in fact singular. Am I mistaken here? drop_operator.sgml: =================== In Outputs the arguments are referred to as type and type2, but the synopsis and Inputs section these are left_type and right_type, respectively. Also, oper is used in Outputs versus id in Inputs/Synopsis. In the translation I follow the replaceables used in the Inputs/Synopsis part. Frank Wegmann
* drop_function.sgml:Bruce Momjian2001-05-08
| | | | | | | | | | =================== In Notes: Refer to CREATE FUNCTION for information on creating aggregate functions. ^^^^^^^^^^^^^^^^^^^ I assume it must read C function instead. Frank Wegmann
* Add newlines around debug output in optimizer showing total costs.Bruce Momjian2001-05-08
|
* Run pgindent on ODBC code only, to reformat new comments.Bruce Momjian2001-05-08
|
* ODBC source code cleanup patch. Should match rest of PostgreSQL code better.Bruce Momjian2001-05-08
|
* Allow SHELL in Makefile.* to control initdb.Bruce Momjian2001-05-08
|
* Update readme about user registration.Bruce Momjian2001-05-08
|
* Fix paren typo in java.Bruce Momjian2001-05-08
|
* Further cleanup of RAISE discussion; in particular, remove exampleTom Lane2001-05-08
| | | | that doesn't actually work.
* Fix raise mention that %% output as %.Bruce Momjian2001-05-08
|
* Un-break exec_move_row() for case that a NULL tuple and tupdesc areTom Lane2001-05-08
| | | | | passed, which occurs when no rows are retrieved by a SELECT. Mea maxima culpa ... I should have caught this.
* Update RAISE manual concerning % format symbols.Bruce Momjian2001-05-08
|
* Update TODO list.Bruce Momjian2001-05-08
|
* Update TODO list.Bruce Momjian2001-05-08
|
* Update RAISE mention in manual to take string/variable not format/identifier.Bruce Momjian2001-05-08
|
* Fix comment in file about 2*max_connections.Bruce Momjian2001-05-07
|
* Shared library and GCC support for SCO OpenServer.Peter Eisentraut2001-05-07
|
* Add mention of functional indexes for case-insensitive comparisons.Bruce Momjian2001-05-07
|
* Fix remaining RI permission problems (cascaded update/delete, restrict,Peter Eisentraut2001-05-07
| | | | set null/default).
* Add \cd command to psql.Peter Eisentraut2001-05-07
|
* Update TODO list.Bruce Momjian2001-05-07
|
* > Occasionally and without warning I get this from my daily vacuumBruce Momjian2001-05-07
| | | | | | | | | | | | | > cronjob: > NOTICE: RegisterSharedInvalid: SI buffer overflow > NOTICE: InvalidateSharedInvalid: cache state reset > I don't understand what these mean. Should I be concerned about them > and what do they signify? No real need to worry. Those should've been downgraded to DEBUG-level messages a release or two back, but nobody bothered... Tom Lane
* Update TODO list.Bruce Momjian2001-05-07
|
* Update FAQ to use new pgsql-cygwin@postgresql.org list.Bruce Momjian2001-05-07
|
* Solaris startup cleanup from Justin CliftBruce Momjian2001-05-07
|
* Rewrite of planner statistics-gathering code. ANALYZE is now available asTom Lane2001-05-07
| | | | | | | | | | | | | | | | | a separate statement (though it can still be invoked as part of VACUUM, too). pg_statistic redesigned to be more flexible about what statistics are stored. ANALYZE now collects a list of several of the most common values, not just one, plus a histogram (not just the min and max values). Random sampling is used to make the process reasonably fast even on very large tables. The number of values and histogram bins collected is now user-settable via an ALTER TABLE command. There is more still to do; the new stats are not being used everywhere they could be in the planner. But the remaining changes for this project should be localized, and the behavior is already better than before. A not-very-related change is that sorting now makes use of btree comparison routines if it can find one, rather than invoking '<' twice.
* Fix collateral damage from previous (rev 1.49) patch.Peter Eisentraut2001-05-06
|
* Allow 'psql -f -' to read from standard input.Peter Eisentraut2001-05-06
|
* Make prompt customization work with changeable Unix socket location.Peter Eisentraut2001-05-06
|
* not sure about this one ... but should have changelog in both versions ...Marc G. Fournier2001-05-05
|
* UPdate for release tomorrow.Bruce Momjian2001-05-05
|
* COMMIT_DELAY and COMMIT_SIBLINGS were missing from the list of WALTom Lane2001-05-04
| | | | configuration parameters in chapter 3.
* Update TODO list.Bruce Momjian2001-05-04
|
* Makefile should have automatic dependency for parser.o too, if it'sTom Lane2001-05-04
| | | | going to have any at all.
* Update TODO list.Bruce Momjian2001-05-04
|
* Seems like we should not hold off cancel/die interrupts while we areTom Lane2001-05-04
| | | | | running deferred triggers. They are really part of the regular transaction, and they could take awhile.
* Add missing tag.Bruce Momjian2001-05-04
|