summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2000-04-26Remove DriverClass.java. It is generated by the compile.Bruce Momjian
2000-04-26Add res clear to exampleBruce Momjian
2000-04-26Install Peter's Makefile.Bruce Momjian
2000-04-26Reinstalled revision 1.36 (looks Peter Mount installedJan Wieck
a new JDBC Makefile here by accident) Jan
2000-04-26third attemptPeter Mount
2000-04-26Attempt IIIPeter Mount
2000-04-26Another attemptPeter Mount
2000-04-26Update libpgeasy readme.Bruce Momjian
2000-04-25Make c++ examples return 0 from main().Bruce Momjian
2000-04-25Fix libpq example return valuesBruce Momjian
2000-04-25change reindex ERROR/NOTICE messageHiroshi Inoue
2000-04-25initdb didn't always remove temp filePeter Eisentraut
2000-04-25Check that user-specified opclass in CREATE INDEX corresponds to operatorsTom Lane
that will actually work on the column datatype.
2000-04-25Update pg_ctl so that it does not redirect outputs from postmasterTatsuo Ishii
to a temp file.
2000-04-24Fix \h to not go past array boundsBruce Momjian
2000-04-23Add mention of int in variable.Bruce Momjian
2000-04-23Add mention of int for variable in examplesBruce Momjian
2000-04-23Our test to see if we had permission to install into Perl5 install areaTom Lane
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.
2000-04-23Produce an appropriate error message when opclass is not supported byTom Lane
specified index access method. Clean up wording of some existing error messages, too.
2000-04-237.0 buffer manager can support different backends running with differentTom Lane
fsync settings, so the -F option no longer needs to be treated as secure.
2000-04-22Remove broken tracing code (which would be dangerous if it did work...)Tom Lane
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.
2000-04-22Update example: PgLargeObject constructor now takes a conninfo string,Tom Lane
not a bare database name.
2000-04-21pltcl didn't work well at all when Tcl had been built with a differentTom Lane
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.
2000-04-21Finally figured out that HP's cpp won't do ANSI preprocessing constructsTom Lane
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 ;-)
2000-04-21Fix still more static-declaration-vs-nonstatic-definition glitches.Tom Lane
gcc doesn't think these are a problem, but somewhere out there is a compiler that will spit up.
2000-04-20Clean up const-vs-not-const compiler warning in MULTIBYTE code.Tom Lane
'Twas my fault, I think.
2000-04-20Allow libpq++ compile failure to stop entire compile.Bruce Momjian
2000-04-20Add a regress test case for SELECT count(*) FROM view, so that we'llTom Lane
know if that case ever breaks again...
2000-04-20Correct error in rewriter that caused SELECT count(*) FROM viewTom Lane
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!
2000-04-18Security fix for plperl.Bruce Momjian
2000-04-18linux_alpha pattern should allow for more-detailed machine type suchTom Lane
as 'alphaev5', cf report from Stepanov 13-Apr-00.
2000-04-18Repair coredump seen when a view refers to an inheritance groupTom Lane
(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...
2000-04-18Correct oversight in hashjoin cost estimation: nodeHash sizes its hashTom Lane
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.
2000-04-18Include information for armv4l from Mark Knox <segfault@hardline.org>.Thomas G. Lockhart
2000-04-18Revert no-longer-needed relaxation of compiler errors.Tom Lane
2000-04-18Make ECPGraise's str parameter const to suppress warnings from gccTom Lane
and errors from pickier compilers.
2000-04-17Add comment for -qhalt=w removal so it can be re-added laterBruce Momjian
2000-04-17Another attempt at 7.0Peter Mount
2000-04-17Aix additionsBruce Momjian
2000-04-17Remove -qhalt=w flag from aix42.Bruce Momjian
2000-04-17Add code to test for non-shared libperl and fail gracefully.Tom Lane
Not a big step forward, but it's something...
2000-04-16squished \dS+ bug pointed out by Mike MascariPeter Eisentraut
2000-04-16Tweak create_help.pl so it will work under either perl 4.* or perl 5.*.Tom Lane
Remove knowledge of path to documentation source directory from perl script, instead have Makefile pass it to script.
2000-04-16more psql bug squashing:Peter Eisentraut
\copy without arguments failed commands with too many arguments were too silent
2000-04-16Add new selectivity estimation functions for pattern-matching operatorsTom Lane
(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.
2000-04-16Allow COPY WITH OIDS to system OID values --- rely on unique indexes toTom Lane
prevent duplicate OIDs from being added. Clean up redundant error messages.
2000-04-16Show failing OID in 'cache lookup failed' messages.Tom Lane
2000-04-16Show failing OID in 'cache lookup failed' messages;Tom Lane
print OIDs as %u not %d.
2000-04-16Show failing OID in 'cache lookup failed' messages.Tom Lane
2000-04-16Change postmaster.opts.default.sample. remove -S option.Tatsuo Ishii
With the default option, pg_ctl can show messages from postmaster upon its failure.