Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Remove DriverClass.java. It is generated by the compile. | Bruce Momjian | 2000-04-26 | |
| | ||||
* | Add res clear to example | Bruce Momjian | 2000-04-26 | |
| | ||||
* | Install Peter's Makefile. | Bruce Momjian | 2000-04-26 | |
| | ||||
* | Reinstalled revision 1.36 (looks Peter Mount installed | Jan Wieck | 2000-04-26 | |
| | | | | | | a new JDBC Makefile here by accident) Jan | |||
* | third attempt | Peter Mount | 2000-04-26 | |
| | ||||
* | Attempt III | Peter Mount | 2000-04-26 | |
| | ||||
* | Another attempt | Peter Mount | 2000-04-26 | |
| | ||||
* | Update libpgeasy readme. | Bruce Momjian | 2000-04-26 | |
| | ||||
* | Make c++ examples return 0 from main(). | Bruce Momjian | 2000-04-25 | |
| | ||||
* | Fix libpq example return values | Bruce Momjian | 2000-04-25 | |
| | ||||
* | change reindex ERROR/NOTICE message | Hiroshi Inoue | 2000-04-25 | |
| | ||||
* | initdb didn't always remove temp file | Peter Eisentraut | 2000-04-25 | |
| | ||||
* | Check that user-specified opclass in CREATE INDEX corresponds to operators | Tom Lane | 2000-04-25 | |
| | | | | that will actually work on the column datatype. | |||
* | Update pg_ctl so that it does not redirect outputs from postmaster | Tatsuo Ishii | 2000-04-25 | |
| | | | | to a temp file. | |||
* | Fix \h to not go past array bounds | Bruce Momjian | 2000-04-24 | |
| | ||||
* | Add mention of int in variable. | Bruce Momjian | 2000-04-23 | |
| | ||||
* | Add mention of int for variable in examples | Bruce Momjian | 2000-04-23 | |
| | ||||
* | Our test to see if we had permission to install into Perl5 install area | Tom Lane | 2000-04-23 | |
| | | | | | | always failed if Perl makefile's INSTALLSITELIB variable was specified in terms of another variable. Fix by adding an echo-installdir target to the Perl makefile, which the upper-level Makefile can invoke. | |||
* | Produce an appropriate error message when opclass is not supported by | Tom Lane | 2000-04-23 | |
| | | | | | specified index access method. Clean up wording of some existing error messages, too. | |||
* | 7.0 buffer manager can support different backends running with different | Tom Lane | 2000-04-23 | |
| | | | | fsync settings, so the -F option no longer needs to be treated as secure. | |||
* | Remove broken tracing code (which would be dangerous if it did work...) | Tom Lane | 2000-04-22 | |
| | | | | | | | | | | | libpq++.h contained copies of the class declarations in the other libpq++ include files, which was bogus enough, but the declarations were not completely in step with the real declarations. Remove these in favor of including the headers with #include. Make PgConnection destructor virtual (not absolutely necessary, but seems like a real good idea considering the number of subclasses derived from it). Give all classes declared private copy constructors and assignment operators, to prevent compiler from thinking it can copy these objects safely. | |||
* | Update example: PgLargeObject constructor now takes a conninfo string, | Tom Lane | 2000-04-22 | |
| | | | | not a bare database name. | |||
* | pltcl didn't work well at all when Tcl had been built with a different | Tom Lane | 2000-04-21 | |
| | | | | | | | compiler than the one selected to build Postgres with. It was trying to feed Postgres-compiler switches to Tcl's compiler. (Seen this before with the perl5 interface...) Fix to use only CFLAGS taken from Tcl's configure information, plus -I which is pretty universal. | |||
* | Finally figured out that HP's cpp won't do ANSI preprocessing constructs | Tom Lane | 2000-04-21 | |
| | | | | | | unless you feed it -Aa or -Ae switch. Autoconf does not know about this, but we can fix it in the hpux_cc template file. I knew templates were good for something ;-) | |||
* | Fix still more static-declaration-vs-nonstatic-definition glitches. | Tom Lane | 2000-04-21 | |
| | | | | | gcc doesn't think these are a problem, but somewhere out there is a compiler that will spit up. | |||
* | Clean up const-vs-not-const compiler warning in MULTIBYTE code. | Tom Lane | 2000-04-20 | |
| | | | | 'Twas my fault, I think. | |||
* | Allow libpq++ compile failure to stop entire compile. | Bruce Momjian | 2000-04-20 | |
| | ||||
* | Add a regress test case for SELECT count(*) FROM view, so that we'll | Tom Lane | 2000-04-20 | |
| | | | | know if that case ever breaks again... | |||
* | Correct error in rewriter that caused SELECT count(*) FROM view | Tom Lane | 2000-04-20 | |
| | | | | | | | to give wrong results: it should be looking at inJoinSet not inFromCl. Also, make 'modified' flag be local to ApplyRetrieveRule: we should append a rule's quals to the query iff that particular rule applies, not if we have fired any previously-considered rule for the query! | |||
* | Security fix for plperl. | Bruce Momjian | 2000-04-18 | |
| | ||||
* | linux_alpha pattern should allow for more-detailed machine type such | Tom Lane | 2000-04-18 | |
| | | | | as 'alphaev5', cf report from Stepanov 13-Apr-00. | |||
* | Repair coredump seen when a view refers to an inheritance group | Tom Lane | 2000-04-18 | |
| | | | | | | (SELECT FROM table*). Cause was reference to 'eref' field of an RTE, which is null in an RTE loaded from a stored rule parsetree. There wasn't any good reason to be touching the refname anyway... | |||
* | Correct oversight in hashjoin cost estimation: nodeHash sizes its hash | Tom Lane | 2000-04-18 | |
| | | | | | | table for an average of NTUP_PER_BUCKET tuples/bucket, but cost_hashjoin was assuming a target load of one tuple/bucket. This was causing a noticeable underestimate of hashjoin costs. | |||
* | Include information for armv4l from Mark Knox <segfault@hardline.org>. | Thomas G. Lockhart | 2000-04-18 | |
| | ||||
* | Revert no-longer-needed relaxation of compiler errors. | Tom Lane | 2000-04-18 | |
| | ||||
* | Make ECPGraise's str parameter const to suppress warnings from gcc | Tom Lane | 2000-04-18 | |
| | | | | and errors from pickier compilers. | |||
* | Add comment for -qhalt=w removal so it can be re-added later | Bruce Momjian | 2000-04-17 | |
| | ||||
* | Another attempt at 7.0 | Peter Mount | 2000-04-17 | |
| | ||||
* | Aix additions | Bruce Momjian | 2000-04-17 | |
| | ||||
* | Remove -qhalt=w flag from aix42. | Bruce Momjian | 2000-04-17 | |
| | ||||
* | Add code to test for non-shared libperl and fail gracefully. | Tom Lane | 2000-04-17 | |
| | | | | Not a big step forward, but it's something... | |||
* | squished \dS+ bug pointed out by Mike Mascari | Peter Eisentraut | 2000-04-16 | |
| | ||||
* | Tweak create_help.pl so it will work under either perl 4.* or perl 5.*. | Tom Lane | 2000-04-16 | |
| | | | | | Remove knowledge of path to documentation source directory from perl script, instead have Makefile pass it to script. | |||
* | more psql bug squashing: | Peter Eisentraut | 2000-04-16 | |
| | | | | | \copy without arguments failed commands with too many arguments were too silent | |||
* | Add new selectivity estimation functions for pattern-matching operators | Tom Lane | 2000-04-16 | |
| | | | | | | | | (LIKE and regexp matches). These are not yet referenced in pg_operator, so by default the system will continue to use eqsel/neqsel. Also, tweak convert_to_scalar() logic so that common prefixes of strings are stripped off, allowing better accuracy when all strings in a table share a common prefix. | |||
* | Allow COPY WITH OIDS to system OID values --- rely on unique indexes to | Tom Lane | 2000-04-16 | |
| | | | | | prevent duplicate OIDs from being added. Clean up redundant error messages. | |||
* | Show failing OID in 'cache lookup failed' messages. | Tom Lane | 2000-04-16 | |
| | ||||
* | Show failing OID in 'cache lookup failed' messages; | Tom Lane | 2000-04-16 | |
| | | | | print OIDs as %u not %d. | |||
* | Show failing OID in 'cache lookup failed' messages. | Tom Lane | 2000-04-16 | |
| | ||||
* | Change postmaster.opts.default.sample. remove -S option. | Tatsuo Ishii | 2000-04-16 | |
| | | | | | With the default option, pg_ctl can show messages from postmaster upon its failure. |