summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2001-11-28Load netmsg.dll locally in winsock_strerror, to avoid actual andTom Lane
potential problems discussed in pgsql-interfaces.
2001-11-28No longer need define test in md5.h because of Hiroshi's win_md5.c.Bruce Momjian
2001-11-27Fix nasty memory leak in pg_restore: _PrintData called inflateInit butTom Lane
never did inflateEnd, thus leaking some tens of KB per call. Which added up *real fast* when dealing with, say, thousands of BLOBs. Thanks to Lane Rollins for the bug report.
2001-11-27strcat should obviously be strcpy here.Tom Lane
2001-11-27Chinese PO patchBruce Momjian
Laser.
2001-11-26Fix various bogosities in usage message.Tom Lane
2001-11-26Rename make_keywords.README to make_keywords.Bruce Momjian
2001-11-26Fix unportable, non-spec-compliant use of offsetof() with a nonconstantTom Lane
member offset.
2001-11-26Rename find_baddefs to find_badmacrosBruce Momjian
2001-11-26Change display of FieldSelect nodes from arg.field to field(arg),Tom Lane
per bug report from Stefan Hadjistoytchev. There are some cases where the dot notation works, but there are more where it doesn't. Eventually ought to consider fixing the parser to allow cases like func().field, but for now this is the simplest patch.
2001-11-26Fix for "--" options. Allow --xxx as a valid flag, from NetBSD fix.Bruce Momjian
2001-11-26Chinese for psql and pg_dump.Bruce Momjian
laser
2001-11-26Repair problem with listing rules that have a WHERE condition andTom Lane
have an INSERT...SELECT as the first or only action. Per bug report from Sergio Pili.
2001-11-25This patch fixes a bug reported by Graham Leggett (minfrin@sharp.fm).Barry Lind
The bug was that any insert or update would fail if the returned oid was larger than a signed int. Since OIDs are unsigned int's it was a bug that the code used a java signed int to deal with the values. The bug would result in the error message: "Unable to fathom update count". While fixing the bug, it became apparent that other code made a similar assumption about OIDs being signed ints. Therefore some methods that returned or took OIDs are arguements also needed to be changed. Since we are so close to the 7.2 release I have added new methods that return longs and deprecated the old methods returning ints. Therefore all old code should still work without requiring a code change to cast from long to int. Also note that the methods below are PostgreSQL specific extensions to the JDBC api are are not part of the spec from Sun, thus it is unlikely that they are used much or at all. The deprecated methods are: ResultSet.getInsertedOID() Statement.getInsertedOID() Serialize.store() Connection.putObject() and are replaced by: ResultSet.getLastOID() Statement.getLastOID() Serialize.storeObject() Connection.storeObject() All the deprecated methods returned int, while their replacements return long This patch also fixes two comments in MD5Digest that the author Jeremy Wohl submitted. --Barry
2001-11-25Encoding isn't necessarily multibytePeter Eisentraut
2001-11-25Backend /po patch.Bruce Momjian
http://laser.zhengmai.com.cn/download/backend_zh_CN.po.diff.gz Weiping He
2001-11-24Tweak int8in to accept -9223372036854775808, per recent discussion inTom Lane
pgsql-patches.
2001-11-24Make initdb --help not line wrap.Bruce Momjian
2001-11-24Remove extraneous space that somehow got into expected alter_table.out.Tom Lane
The default diff switches prevented regression tests from complaining, but that doesn't make it correct.
2001-11-23Fix boundary condition in btbulkdelete: don't examine high key in caseTom Lane
where rightmost index page splits while we are waiting to obtain exclusive lock on it. Not clear this would actually hurt (probably the callback would always fail), but better safe than sorry. Also, improve comments describing concurrency considerations in this code.
2001-11-22Remove compile errors of psql.exe and libpq.dll underHiroshi Inoue
Multibyte mode.
2001-11-21Spell 'precedes', 'preceding' correctly in various places.Tom Lane
2001-11-21Insert CommandCounterIncrement call into SPI_cursor_open.Tom Lane
2001-11-21Tweak interval_avg support to avoid coredump with Alpha/Tru64 compiler.Tom Lane
Per report from Bernd Tegge.
2001-11-21Update regress tests to reflect removal of 'current'.Tom Lane
2001-11-21Add a few new time zones, and list every time zone mentioned in myThomas G. Lockhart
Linux box's time zone database. Do not allow 'current' as a date/time input value.
2001-11-21Repair swapped sign for time minus time routine (time_mi_time()).Thomas G. Lockhart
Problem reported by Manuel Sugawara (masm@fciencias.unam.mx).
2001-11-21Allow 'PostgreSQL' as a date/time formatting style. Formerly, recognizedThomas G. Lockhart
'Postgres' only, but now accepts both.
2001-11-21I think it's patch's size problem that I can'tBruce Momjian
send patches to pgsql-patches list. the zh_CN NLS patch is about 80K, but sended twice and still can emerge on list. so I've put it at: http://laser.zhengmai.com.cn/download/zh_CN.po.diff.tar.gz If possible, please download it and apply it. (for current CVS). regards laser
2001-11-21// -> /* */, per Tatsuo.Bruce Momjian
2001-11-20Bruce's octet_length change breaks this regression test.Tom Lane
2001-11-20Add mention of template1 usage.Bruce Momjian
2001-11-20Some minor tweaks of REINDEX processing: grab exclusive lock a littleREL7_2_BETA3Tom Lane
earlier, make error checks more uniform.
2001-11-20Simplify pg_convert() in that it calls pg_convert2 using new fmgr interface.Tatsuo Ishii
2001-11-20Double quotes in ln command to guard against spaces in path.Tom Lane
2001-11-19Change 'return ;' to 'return;'; remove space.Bruce Momjian
2001-11-19Indent jdbc case labels using pgjindent.Bruce Momjian
2001-11-19More jdbc comment cleanups. Code looks very nice now.Bruce Momjian
2001-11-19Update pgindent README so it gets *.java.in files.Bruce Momjian
2001-11-19JDBC indenting, comment cleanups.Bruce Momjian
2001-11-19Tweak format_type so that we get good behavior for both column typeTom Lane
display (with a typemod) and function arg/result type display (without a typemod).
2001-11-19Fix arg coerect match text type, per Tom.Bruce Momjian
2001-11-19Make text octet_length() return non-compressed length to be consistentBruce Momjian
with other data types, per disucssion. Encoding issue still open.
2001-11-19Grammatical and spelling fixes.Tom Lane
2001-11-19Fix nasty bugs in pg_convert() and pg_convert2().Tatsuo Ishii
o they sometimes returns a result garbage string appended. o they do not work if client encoding is different from server encoding
2001-11-19Fix comment at top of file to match file name.Hiroshi Inoue
2001-11-19pg_restore should exit with status 0, not 1, on success.Tom Lane
2001-11-19A bunch of small doco updates motivated by scanning the comments onTom Lane
the interactive docs.
2001-11-18Add example of using 'sameuser' followed by 'all' pg_hba records toTom Lane
enforce a limit on who can connect to databases other than their own. From a recent discussion in pg-admin.
2001-11-18Improve comments about duplicate files.Bruce Momjian