summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2002-09-10Fix portability problem (size_t != int).Tom Lane
2002-09-10Powerup defaults for LC_foo GUC variables should match what main.c does.Tom Lane
2002-09-09Use different sed separator for configure arguments.Peter Eisentraut
2002-09-08Fixed DatabaseMetaData to correctly handle NAME size of 64Barry Lind
Fixed Statement to correctly DEALLOCATE any prepared statements Modified Files: jdbc/org/postgresql/PGStatement.java jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
2002-09-07Changes to documentation and the regression tests for the defaultBruce Momjian
NAMEDATALEN of 64. Kris Jurka
2002-09-07Allow pg_dumpall to work with previous releases again. Don't pass the -cPeter Eisentraut
option down to pg_dump, where it's useless, and clarify the meaning of -c in the documentation.
2002-09-07Fix help output.Peter Eisentraut
2002-09-06Make sure the pg_dump tar archiver can handle members larger than 2 GB, butPeter Eisentraut
does not create members larger than allowed by the tar format. Also, fix the generation of the tar header to conform to POSIX.
2002-09-06Run pgjindent for Java folks.Bruce Momjian
2002-09-06Fix printf() quote handling and improper exit(), per Tom.Bruce Momjian
2002-09-06Remove heap_mark4update from AlterTableCreateToastTable. This hasTom Lane
never been the correct procedure for locking a relation, and the recently-found ALTER TABLE bug with adding a constraint and a toast table in the same command shows why it's a bad idea.
2002-09-05Fix some operator-precedence problems. New constructs IS DISTINCT FRMTom Lane
and IS [NOT] OF were not being parsed consistently with other IS forms. Also, make the world a little safer for functions named LEFT, RIGHT, etc.
2002-09-05Fix compile error.Bruce Momjian
2002-09-05Remove PGPASSWORDFILE and default to always trying $HOME/.pgpass.Bruce Momjian
Cleanup up memory allocation for $HOME in related psql places. Update mention of $HOME/.pgpass in the docs; add mention in pg_dumpall.
2002-09-05Improve opr_sanity regression test to check oprltcmpop and opgtcmpopTom Lane
mergejoin links.
2002-09-05Update oidjoins regression test for 7.3 catalogs.Tom Lane
2002-09-05Seems like a good idea for template1 to contain ANALYZE stats for theTom Lane
system tables.
2002-09-05Assorted fixes for Cygwin:Peter Eisentraut
Eliminate the mysterious games that the Cygwin build plays with the linker flag variables. DLLLIBS is gone, use SHLIB_LINK like everyone else. Detect cygipc in configure, after the linker flags are set up, otherwise configure might not work at all. Make sure everything is covered by make clean. Fix the build of the new conversion procedure modules. Add new DLLIMPORT markers where required. Finally, the compiler complains if we use an explicit -I/usr/local/include, so don't do that. Curiously, -L/usr/local/lib is still necessary.
2002-09-05Don't use gethostbyname2(). It's not portable and we don't claim toPeter Eisentraut
support IPv6 anyway.
2002-09-05Fix compilation warning. (Cygwin has char* as second argument ofPeter Eisentraut
recvfrom(), not void*.)
2002-09-05Be careful to include postgres.h *before* any system headers, to ensureTom Lane
that the right flavors of largefile-related definitions are seen. Most of these changes are probably unnecessary, but better safe than sorry.
2002-09-04Guard against send-lots-and-lots-of-data DoS attack from unauthenticatedTom Lane
users, by limiting the length of string we will accept for a password. Patch by Serguei Mokhov, some editorializing by Tom Lane.
2002-09-04Remove leftovers from subproject removals. Fixes for Python and KerberosPeter Eisentraut
configuration.
2002-09-04Fix compile warning.Peter Eisentraut
2002-09-04Fix includes for plperl: ensure postgres.h is included first,Tom Lane
remove unnecessary inclusions.
2002-09-04pgindent run.Bruce Momjian
2002-09-04Update symbols for 7.3.Bruce Momjian
2002-09-04Update for 7.3 typedefs.Bruce Momjian
2002-09-04Update to reflect Tom's suggestions.Bruce Momjian
2002-09-04Remove sh -x option that snuck in somehow.Peter Eisentraut
2002-09-04Avoid multiple scans of utils/mb/conversion_procs/ subdirectories duringTom Lane
'make install'; there are enough of 'em that this slowed down the make noticeably. Ensure that 'all' is the default make target in all these directories (defaulting to 'make install' is surprising and dangerous IMHO). Fix a couple small typos.
2002-09-04File list cleanup.Bruce Momjian
2002-09-04Update files to be changed.Bruce Momjian
2002-09-04Brand 7.3. Ready for beta!Bruce Momjian
2002-09-04Refrect the changes to src/test/regress/sql/conversion.sql By Tom.Tatsuo Ishii
2002-09-03EXTRACT(EPOCH FROM timestamp) gave wrong answers in the int64-timestampTom Lane
case for timestamptz input, and differently wrong answers in the float- timestamp case for timestamp input.
2002-09-03Arrange for the default permissions on a database to allow temp tableTom Lane
creation to world, but disallow temp table creation in template1. Per latest round of pghackers discussion. I did not force initdb, but the permissions lockdown on template1 will not take effect unless you do one (or manually REVOKE TEMP ON DATABASE template1 FROM public).
2002-09-03conversion test fails if there is an existing user named foo. Choose a nameTom Lane
somewhat less likely to provoke a conflict.
2002-09-03Remove all traces of multibyte and locale options. Clean up commentsPeter Eisentraut
referring to "multibyte" where it really means character encoding.
2002-09-03Work around mktime() brain damage in recent versions of glibc by usingTom Lane
a series of localtime() calls to determine the local timezone offset when mktime() fails. This eliminates regression failures on RHL 7.3, and should continue to work until it occurs to the glibc boys to break localtime() as well. By then I hope we'll have our own timezone code...
2002-09-03Eliminate unnecessary dependency on mktime(), and consequent 'Unable toTom Lane
convert date to tm' failures, by using DetermineLocalTimeZone() instead.
2002-09-03Workaround for format strings that are concatenated from macrosPeter Eisentraut
(INT64_FORMAT), which gettext cannot handle.
2002-09-03AIX shlib fix for building libpq.so from Tomoyuki NiijimaBruce Momjian
2002-09-03I think reindex_index had better get AccessExclusiveLock on the parentTom Lane
heap, not just ExclusiveLock.
2002-09-03Code review and documentation updates for indisclustered patch.Tom Lane
2002-09-02Partial solution for 'unexpected EOF' problem with pg_disconnect: itTom Lane
seems we have a choice between annoying messages and leaking memory (or dumping core, but that's right out). Patch also fixes several other problems in pg_disconnect, such as being willing to close a channel that isn't a PG channel.
2002-09-02Translation updatesPeter Eisentraut
2002-09-02Avoid shell syntax error if list of languages is empty.Peter Eisentraut
2002-09-02Fix typos.Peter Eisentraut
2002-09-02Convert control status codes to human-readable strings.Peter Eisentraut