- Mar 26, 2000
-
-
Tom Lane authored
-
Peter Eisentraut authored
Fixed bug in createdb/alternative location
-
Tom Lane authored
-
- Mar 24, 2000
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
easy (maybe dumb) fix for 5 in attachment define.patch greetings, Andreas
-
- Mar 23, 2000
-
-
Bruce Momjian authored
-
Bruce Momjian authored
patch in a second. Should be sufficent to just make sure the first character is a '/', right? Ross J. Reedstrom
-
- Mar 21, 2000
-
-
Bruce Momjian authored
page for 7.0: Oliver Elphick
-
- Mar 18, 2000
-
-
Tom Lane authored
16-Mar-00: trailing + or - is not part of the operator unless the operator also contains characters not present in SQL92-defined operators. This solves the 'X=-Y' problem without unduly constraining users' choice of operator names --- in particular, no existing Postgres operator names become invalid. Also, remove processing of // comments, as agreed in the same thread.
-
- Mar 17, 2000
-
-
Tom Lane authored
a config.h #define, and the runtime value can be controlled via SET.
-
- Mar 16, 2000
-
-
Thomas G. Lockhart authored
-
Tom Lane authored
after trying to resolve the item as an input-column name. This allows us to be compliant with the SQL92 spec for queries that fall within the spec, while still accepting the same out-of-spec queries as 6.5 did. You'll only lose if there is an output column name that is the same as an input column name, but doesn't refer to the same value. 7.0 will interpret such a GROUP BY spec differently than 6.5 did. No way around that, because 6.5 was clearly not spec compliant.
-
- Mar 11, 2000
-
-
Peter Eisentraut authored
-
- Mar 01, 2000
-
-
Peter Eisentraut authored
cope so well with copy to but that will have to wait for the next release. Also added -X option to prevent reading .psqlrc startup file.
-
- Feb 27, 2000
-
-
Tom Lane authored
-
- Feb 21, 2000
-
-
Tom Lane authored
of LIMIT, and fix a few other glitches too.
-
- Feb 20, 2000
-
-
Peter Eisentraut authored
-
- Feb 19, 2000
-
-
Thomas G. Lockhart authored
-
- Feb 16, 2000
-
-
Tom Lane authored
planner now produces two cost numbers instead of one.
-
- Feb 15, 2000
-
-
Tom Lane authored
accesses versus sequential accesses, a (very crude) estimate of the effects of caching on random page accesses, and cost to evaluate WHERE- clause expressions. Export critical parameters for this model as SET variables. Also, create SET variables for the planner's enable flags (enable_seqscan, enable_indexscan, etc) so that these can be controlled more conveniently than via PGOPTIONS. Planner now estimates both startup cost (cost before retrieving first tuple) and total cost of each path, so it can optimize queries with LIMIT on a reasonable basis by interpolating between these costs. Same facility is a win for EXISTS(...) subqueries and some other cases. Redesign pathkey representation to achieve a major speedup in planning (I saw as much as 5X on a 10-way join); also minor changes in planner to reduce memory consumption by recycling discarded Path nodes and not constructing unnecessary lists. Minor cleanups to display more-plausible costs in some cases in EXPLAIN output. Initdb forced by change in interface to index cost estimation functions.
-
- Feb 13, 2000
-
-
Peter Eisentraut authored
-
- Feb 10, 2000
-
-
Peter Eisentraut authored
Changed EXIT_ON_ERROR to ON_ERROR_STOP in psql
-
- Feb 08, 2000
-
-
Peter Eisentraut authored
Fixed libpq printing functions
-
- Feb 02, 2000
-
-
Thomas G. Lockhart authored
From pgadmin author on 99-12-24.
-
- Jan 29, 2000
-
-
Peter Eisentraut authored
Initdb help correction Changed end/abort to commit/rollback and changed related notices Commented out way old printing functions in libpq Fixed a typo in alter table / alter column
-
- Jan 27, 2000
-
-
Tom Lane authored
SELECT DISTINCT ON (expr [, expr ...]) targetlist ... and there is a check to make sure that the user didn't specify an ORDER BY that's incompatible with the DISTINCT operation. Reimplement nodeUnique and nodeGroup to use the proper datatype-specific equality function for each column being compared --- they used to do bitwise comparisons or convert the data to text strings and strcmp(). (To add insult to injury, they'd look up the conversion functions once for each tuple...) Parse/plan representation of DISTINCT is now a list of SortClause nodes. initdb forced by querytree change...
-
- Jan 24, 2000
-
-
Peter Eisentraut authored
Made type equivalency apply to aggregates (TODO item) Fixed parsing bug in psql Reverted some stupid options changes I made to pg_dump
-
- Jan 20, 2000
-
-
Peter Eisentraut authored
New INSTALL file Fixed a copyright notice
-
- Jan 19, 2000
-
-
Peter Eisentraut authored
removed pg_id fixed a few bugs in the scripts
-
Peter Eisentraut authored
-
- Jan 18, 2000
-
-
Peter Eisentraut authored
Made ipcclean work on Linux.
-
- Jan 15, 2000
-
-
Peter Eisentraut authored
- Prevent permissions on indexes - Instituted --enable-multibyte option and tweaked the MB build process where necessary - initdb prompts for superuser password
-
- Jan 14, 2000
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
* Let unprivileged users change their own passwords. * The password is now an Sconst in the parser, which better reflects its text datatype and also forces users to quote them. * If your password is NULL you won't be written to the password file, meaning you can't connect until you have a password set up (if you use password authentication). * When you drop a user that owns a database you get an error. The database is not gone.
-
- Jan 12, 2000
-
-
Peter Eisentraut authored
-
- Jan 09, 2000
-
-
Bruce Momjian authored
traced this back to what I believe is an error in the sgml file used to generate this comment, found in pgsql/doc/src/sgml/ref/alter_table.sgml. Stephen Birch
-
- Dec 30, 1999
-
-
Bruce Momjian authored
-
- Dec 18, 1999
-
-
Bruce Momjian authored
> > It would be nice for new users; I think it would make it easier > > for them to actually set out and do it. Many new users are > > of the not-so-knowledgable variety, and shell scripting isn't > > something they want to undertake. > > Can someone modify the vacuumdb shell script to do that? i tried it... it seems to work neko@kredit.sth.sz
-
- Dec 17, 1999
-
-
Thomas G. Lockhart authored
-