aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Small cleanup.Bruce Momjian2001-05-08
|
* 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
|
* Fix paren typo in java.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.
* Fix comment in file about 2*max_connections.Bruce Momjian2001-05-07
|
* Shared library and GCC support for SCO OpenServer.Peter Eisentraut2001-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
|
* > 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
* 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
|
* Makefile should have automatic dependency for parser.o too, if it'sTom Lane2001-05-04
| | | | going to have any at all.
* 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.
* Consolidate several near-identical uses of mktime() into a singleTom Lane2001-05-03
| | | | | | | | | routine DetermineLocalTimeZone(). In that routine, be more wary of broken mktime() implementations than the original code was: don't allow mktime to change the already-set y/m/d/h/m/s information, and don't use tm_gmtoff if mktime failed. Possibly this will resolve some of the complaints we've been hearing from users of Middle Eastern timezones on RedHat.
* BTW it does not add encodign it just patches existing one (KOI8) toBruce Momjian2001-05-03
| | | | | | | support two - KOI8-R and KOI8-U (latter is superset of the former if not to take to the account pseudographics) Andy Rysin
* Permission checking wasn't quite right for insert/update/delete rules,Tom Lane2001-05-03
| | | | either :-(.
* apply a little patch:Bruce Momjian2001-05-03
| | | | Oleg Bartunov
* Ensure that btree sort ordering functions and boolean comparison operatorsTom Lane2001-05-03
| | | | | | | | | | give consistent results for all datatypes. Types float4, float8, and numeric were broken for NaN values; abstime, timestamp, and interval were broken for INVALID values; timetz was just plain broken (some possible pairs of values were neither < nor = nor >). Also clean up text, bpchar, varchar, and bit/varbit to eliminate duplicate code and thereby reduce the probability of similar inconsistencies arising in the future.
* Permissions were not checked correctly when one view invokes another.Tom Lane2001-05-03
| | | | Per bug report from Lieven Van Acker, 5/2/01.
* Improve list.Bruce Momjian2001-05-03
|
* Updates for 7.1.1. Not done yet.Bruce Momjian2001-05-03
|
* Correct pg_description entry for type macaddr.Tom Lane2001-05-03
|
* Fixes to make ecpg work on Cygwin, from Jason Tishler ↵Tom Lane2001-05-03
| | | | <Jason.Tishler@dothill.com>.
* Previous commit mistakenly converted all newlines to DOS style (CR/LF).Tom Lane2001-05-02
| | | | | Convert back to Unix style --- it seems some versions of nmake insist on this.
* Add note explaining why inserts take longer as tables grow. Also suggestD'Arcy J.M. Cain2001-05-02
| | | | the way to handle this.
* Change "|zzlzzzz" argument specification to "|zzizzzz" so that the code worksD'Arcy J.M. Cain2001-05-02
| | | | | | properly on 64 bit systems. Change submitted by Marc Poinot (Marc.Poinot@onera.fr)
* Synced gram.y and preproc.y.Tom Lane2001-05-01
|
* Allow a string argument to the EXTRACT() function.Thomas G. Lockhart2001-05-01
| | | | | | | This is an extension to the SQL9x standard, but is consistant with usage of the underlying date_part() function used to implement it. Example: EXTRACT('YEAR',...) No impact on regression tests.
* 1) fix bugs reported by Andrea Aime.Hiroshi Inoue2001-05-01
| | | | | 2) fix a bug reported by Jan Wieck. psqlodbc is 7.01.0005 now.
* exec_move_row() should be more forgiving of tuples with a differentTom Lane2001-04-30
| | | | | number of columns than it was expecting, for reasons that are now documented in the code...
* Suppress pull-up of subqueries that are in the nullable side of an outerTom Lane2001-04-30
| | | | | | join. This is needed to avoid improper evaluation of expressions that should be nulled out, as in Victor Wagner's bug report of 4/27/01. Pretty ugly solution, but no time to do anything better for 7.1.1.
* Add missing Unicode support for Cyrillic encodings.Tatsuo Ishii2001-04-29
| | | | Patches contributed by Victor Wagner.
* Remove bogus Assert from AbsoluteTimeIsBefore(). (If you don't thinkTom Lane2001-04-26
| | | | it's bogus, try building a btree index on the regress tests' abstime_tbl.)
* Tweak nestloop costing to weight restart cost of inner path more heavily.Tom Lane2001-04-25
| | | | | Without this, it was making some pretty silly decisions about whether an expensive sub-SELECT should be the inner or outer side of a join...
* - Fixed CONSTRAINT TRIGGER dump to record tgconstrelid properlyPhilip Warner2001-04-25
| | | | - pgsql v7.0 compatbility
* Undo pgindent brain damage, so that node type numbers can once again beTom Lane2001-04-24
| | | | counted off by lines ...
* Behave sanely when database name is omitted from command line.Tom Lane2001-04-23
|
* Send 'cd' output to /dev/null.Peter Eisentraut2001-04-23
|
* compatible_oper needs to do ReleaseSysCache in one path to avoidTom Lane2001-04-23
| | | | complaints about 'Cache reference leak'. Per report from Don Baccus.
* 1) Decrease the size of needlessly large buffers. For example, itHiroshi Inoue2001-04-23
| | | | | resolved the stack over flow errors reported by Johann Zuschlag. 2) Support {oj syntax for 71. servers.
* A patch to fix the following bugs.Hiroshi Inoue2001-04-23
| | | | | | | | | | | 1) [ODBC] Psqlodbc and Centura: here it is a patch posted by Matteo Cavalleli 2) [ODBC] pgsqODBC binding parameters II posted by Ludek Finstrle 3) Invalid Page Fault in PSQLODBC.DLL personal mail from Johann Zuschlag Hiroki Kataoka kataoka@interwiz.koganei.tokyo.jp
* Don't bomb out on indexes on system attributes other than 'oid'.Tom Lane2001-04-22
| | | | | (Not sure such an index is actually useful, but just because it's useless doesn't mean pg_dump should coredump.)
* Remove useless setuid() call, instead add a check that real and effectiveTom Lane2001-04-21
| | | | userids are the same. Per today's pghackers discussion.
* Make sure that the postmaster options (from postmaster.opts[.default] orPeter Eisentraut2001-04-21
| | | | | -o option) are properly dequoted. Also, always pass an explicit -D option to postmaster, don't rely on it being set in postmaster.opts.
* Add extern int optreset declaration, per bug report from <info@decc.nl>.Peter Eisentraut2001-04-19
|