summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2002-11-20Fix a stupid cut and paste error from the commit last night.Barry Lind
Modified Files: Tag: REL7_3_STABLE AbstractJdbc2Statement.java
2002-11-20Backport bug with executeBatch. This bug was a regression from 7.2 and hasBarry Lind
been reported by Marko Strukelj and Keith Wannamaker Modified Files: Tag: REL7_3_STABLE jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java jdbc/org/postgresql/test/jdbc2/BatchExecuteTest.java
2002-11-18Put back error test for DECLARE CURSOR outside a transaction block ...Tom Lane
but do it correctly now.
2002-11-15Push qual clauses containing subplans to the back of the qual listTom Lane
at each plan node. Per gripe from Ross Reedstrom.
2002-11-14Backpatch from head: fixes for a threading bug, a problem with setNull involvingBarry Lind
server prepared statements and an improved error message Modified Files: Tag: REL7_3_STABLE jdbc/org/postgresql/errors.properties jdbc/org/postgresql/core/Encoding.java jdbc/org/postgresql/core/QueryExecutor.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
2002-11-13Update German translations.Peter Eisentraut
2002-11-13Allow +1300 as a numeric timezone specifier; we already accept FJST as ↵Tom Lane
meaning +1300.
2002-11-13Use cat instead of echo or awk, to avoid portability problems with backslashes.Tom Lane
2002-11-12Update AIX resultmap for horology tests, per Andreas.Tom Lane
2002-11-12Fix broken GB18030 <--> UTF-8 conversion mapTatsuo Ishii
2002-11-12Remove NO_MKTIME_BEFORE_1970. I had speculated that it was not neededTom Lane
anymore given the mktime() workaround now done in DetermineLocalTimeZone. This has now been confirmed by Robert Bruccoleri for Irix, and I'm going to extrapolate to AIX as well.
2002-11-11Merge fix from head for proper join to pg_descriptionBarry Lind
Modified Files: Tag: REL7_3_STABLE jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java
2002-11-11Add cast to suppress compile warning on Alphas.Tom Lane
2002-11-08Back-patch changes to address Perl _GNU_SOURCE problem.Tom Lane
2002-11-07Remove inappropriate inclusions of OpenSSL internal header e_os.h,Tom Lane
as well as unnecessary (and incorrect on Windows) assignments to errno/SOCK_ERRNO.
2002-11-07Remove no-longer-needed inclusions to improve backward compatibilityTom Lane
with older bison versions.
2002-11-05Translation updatesPeter Eisentraut
2002-11-04Back-patch recent file removals into REL7_3_STABLE branch.Tom Lane
2002-11-04This commit was manufactured by cvs2git to create branch 'REL7_3_STABLE'.CVS to git conversion script
Sprout from master 2002-11-04 17:14:29 UTC Tom Lane <tgl@sss.pgh.pa.us> 'Remove extraneous semicolons after routine bodies. These don't bother' Cherrypick from master 2002-09-04 07:23:04 UTC Bruce Momjian <bruce@momjian.us> 'Brand 7.3. Ready for beta!': contrib/xml/README contrib/retep/CHANGELOG contrib/retep/Implementation contrib/retep/Makefile contrib/retep/README contrib/retep/build.xml contrib/retep/data/cds.dtd contrib/retep/data/cds.xml contrib/retep/uk/org/retep/tools.properties contrib/retep/uk/org/retep/dtu/DCollection.java contrib/retep/uk/org/retep/dtu/DConstants.java contrib/xml/pgxml_dom.source contrib/retep/uk/org/retep/dtu/DElement.java contrib/retep/uk/org/retep/dtu/DEnvironment.java contrib/retep/uk/org/retep/dtu/DModule.java contrib/retep/uk/org/retep/dtu/DModuleXML.java contrib/retep/uk/org/retep/dtu/DNode.java contrib/retep/uk/org/retep/dtu/DProcessor.java contrib/retep/uk/org/retep/dtu/DTransform.java contrib/retep/uk/org/retep/tools/Tool.java contrib/retep/uk/org/retep/util/ExceptionDialog.java contrib/retep/uk/org/retep/util/Globals.java contrib/retep/uk/org/retep/util/Logger.java contrib/retep/uk/org/retep/util/Main.java contrib/retep/uk/org/retep/util/StandaloneApp.java contrib/retep/uk/org/retep/util/hba/Editor.java contrib/retep/uk/org/retep/util/misc/IPAddress.java contrib/retep/uk/org/retep/util/misc/PropertiesIO.java contrib/retep/uk/org/retep/util/misc/WStringTokenizer.java contrib/retep/uk/org/retep/util/models/HBATableModel.java contrib/retep/uk/org/retep/util/models/PropertiesTableModel.java contrib/retep/uk/org/retep/util/proped/PropertyEditor.java contrib/retep/uk/org/retep/xml/core/XMLFactory.java contrib/retep/uk/org/retep/xml/core/XMLFactoryException.java contrib/retep/uk/org/retep/xml/jdbc/XMLDatabase.java contrib/retep/uk/org/retep/xml/jdbc/XMLResultSet.java contrib/retep/uk/org/retep/xml/parser/TagListener.java contrib/retep/uk/org/retep/xml/test/XMLExport.java doc/src/sgml/libpgeasy.sgml doc/src/sgml/odbc.sgml contrib/xml/pgxml.source doc/src/sgml/recovery.sgml src/test/regress/expected/geometry-bsdi-precision.out contrib/retep/uk/org/retep/xml/parser/TagHandler.java doc/src/sgml/version.sgml doc/src/sgml/y2k.sgml contrib/retep/retep.jpx src/interfaces/jdbc/utils/CheckVersion.java src/interfaces/jdbc/utils/changelog.pl contrib/retep/uk/org/retep/util/hba/Main.java contrib/retep/uk/org/retep/util/hba/Record.java contrib/retep/uk/org/retep/util/proped/Main.java src/interfaces/jdbc/CHANGELOG src/interfaces/jdbc/Implementation src/interfaces/jdbc/utils/buildDriver src/interfaces/jdbc/jdbc.jpx
2002-11-04Fix inclusion order, per Andreas.Tom Lane
2002-11-04Remove unnecessary inclusion, per Andreas.Tom Lane
2002-11-04Remove no-longer-needed inclusion of bootstrap_tokens.h, per patchTom Lane
from Andreas.
2002-11-04Applied two patches from Kris Jurka.Barry Lind
- First fixes a problem with a recent patch allowing setNull on updateable resultsets - Second removed toLower() calls on database object names. Leave it to the caller to correctly pass lower, upper or mixed case. The driver already has methods that the caller can use to determine that postgres stores identifiers in lowercase. (unless the identifier was quoted when created). Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
2002-11-02Code review for recent patch to allow ALTER TABLE ADD COLUMN whenTom Lane
a child table already has a matching column. Acquire appropriate lock on child table; do the right thing with any CHECK constraints attached to the new parent column.
2002-11-02During swap_relfilenodes, swap relation size statistic fields along withTom Lane
the relfilenode and toast fields. This ensures that the newly-computed statistics will be available on completion of CLUSTER.
2002-11-02Remove encoding lookups from grammar stage, push them back to placesTom Lane
where it's safe to do database access. Along the way, fix core dump for 'DEFAULT' parameters to CREATE DATABASE. initdb forced due to change in pg_proc entry.
2002-11-02Clean up a few fprintf(stderr)'s that should be elog's.Tom Lane
2002-11-02Fix permissions-checking bugs and namespace-search-path bugs inTom Lane
CONVERSION code. Still need to figure out what to do about inappropriate coding in parsing.
2002-11-02Re-add Win32 missing files, I think.Bruce Momjian
2002-11-02Re-add Win32 files.Bruce Momjian
2002-11-01Arrange to compile flex output files as inclusions into other filesTom Lane
(usually bison output files), not as standalone files. This hack works around flex's insistence on including <stdio.h> before we are able to include postgres.h; postgres.h will already be read before the compiler starts to read the flex output file. Needed for largefile support on some platforms.
2002-11-01Reduce a couple of debugging messages from LOG to DEBUG1 category.Tom Lane
2002-11-01Reduce messages associated with shell-type function arguments/resultsTom Lane
from WARNING to NOTICE, since they are expected messages in common cases.
2002-11-01Update to match expected results on OS X 10.2.Tom Lane
2002-11-01After elog(PANIC), exit with abort() not proc_exit(). This allows aTom Lane
core file to be produced for debugging, and avoids trying to run the normal proc-exit cleanup hooks, which are likely to cause additional problems if the system is hosed.
2002-11-01Correct ordering of geometry/freebsd entries, add one for freebsd5.Tom Lane
2002-11-01Update for test changes.Tom Lane
2002-11-01Avoid malloc(0) when printing a table of no columns. On some platformsTom Lane
this returns NULL, which confuses the code.
2002-11-01Fix some bogus comments.Tom Lane
2002-10-31Add missing #include <errno.h>, per gripe from Alessio Bragadini.Tom Lane
2002-10-31Got tired of explaining why this Assert is not wrong.Tom Lane
2002-10-31Code review for statement_timeout patch. Fix some race conditionsTom Lane
between signal handler and enable/disable code, avoid accumulation of timing error due to trying to maintain remaining-time instead of absolute-end-time, disable timeout before commit not after.
2002-10-31Fix miscalculation of remaining free space during tuple chain moving.Tom Lane
Only affects machines where MAXALIGN > 4, and is a boundary-condition case even there, but still surprising that it's not been identified before. Also reduce tuple chain move give-up messages from WARNING to DEBUG1, since they are not unexpected conditions.
2002-10-31Avoid use of inline functions that are not declared static. Needed toTom Lane
conform to C99's brain-dead notion of how inline functions should work.
2002-10-31Clean up gram.y trailing spaces.Bruce Momjian
2002-10-30Return something meaningful for Statement.getFetchSize(). Previously we wereBarry Lind
returning an exception when this method was called. Modified Files: jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
2002-10-30Add additional ORDER BY to join regression test, per Tatsuo.Bruce Momjian
2002-10-30Remove /src/utils. Is final cleanup of getopt.c resurection.Bruce Momjian
2002-10-29Add popen/pclose -> _popen/_pclose() mapping for Win32.Bruce Momjian
2002-10-29Update comments.Bruce Momjian