Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Load netmsg.dll locally in winsock_strerror, to avoid actual and | Tom Lane | 2001-11-28 |
| | | | | potential problems discussed in pgsql-interfaces. | ||
* | No longer need define test in md5.h because of Hiroshi's win_md5.c. | Bruce Momjian | 2001-11-28 |
| | |||
* | Fix nasty memory leak in pg_restore: _PrintData called inflateInit but | Tom Lane | 2001-11-27 |
| | | | | | | 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. | ||
* | strcat should obviously be strcpy here. | Tom Lane | 2001-11-27 |
| | |||
* | Chinese PO patch | Bruce Momjian | 2001-11-27 |
| | | | | Laser. | ||
* | Fix various bogosities in usage message. | Tom Lane | 2001-11-26 |
| | |||
* | Rename make_keywords.README to make_keywords. | Bruce Momjian | 2001-11-26 |
| | |||
* | Fix unportable, non-spec-compliant use of offsetof() with a nonconstant | Tom Lane | 2001-11-26 |
| | | | | member offset. | ||
* | Rename find_baddefs to find_badmacros | Bruce Momjian | 2001-11-26 |
| | |||
* | Change display of FieldSelect nodes from arg.field to field(arg), | Tom Lane | 2001-11-26 |
| | | | | | | | 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. | ||
* | Fix for "--" options. Allow --xxx as a valid flag, from NetBSD fix. | Bruce Momjian | 2001-11-26 |
| | |||
* | Chinese for psql and pg_dump. | Bruce Momjian | 2001-11-26 |
| | | | | laser | ||
* | Repair problem with listing rules that have a WHERE condition and | Tom Lane | 2001-11-26 |
| | | | | | have an INSERT...SELECT as the first or only action. Per bug report from Sergio Pili. | ||
* | This patch fixes a bug reported by Graham Leggett (minfrin@sharp.fm). | Barry Lind | 2001-11-25 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||
* | Encoding isn't necessarily multibyte | Peter Eisentraut | 2001-11-25 |
| | |||
* | Backend /po patch. | Bruce Momjian | 2001-11-25 |
| | | | | | | http://laser.zhengmai.com.cn/download/backend_zh_CN.po.diff.gz Weiping He | ||
* | Tweak int8in to accept -9223372036854775808, per recent discussion in | Tom Lane | 2001-11-24 |
| | | | | pgsql-patches. | ||
* | Make initdb --help not line wrap. | Bruce Momjian | 2001-11-24 |
| | |||
* | Remove extraneous space that somehow got into expected alter_table.out. | Tom Lane | 2001-11-24 |
| | | | | | The default diff switches prevented regression tests from complaining, but that doesn't make it correct. | ||
* | Fix boundary condition in btbulkdelete: don't examine high key in case | Tom Lane | 2001-11-23 |
| | | | | | | | 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. | ||
* | Remove compile errors of psql.exe and libpq.dll under | Hiroshi Inoue | 2001-11-22 |
| | | | | Multibyte mode. | ||
* | Spell 'precedes', 'preceding' correctly in various places. | Tom Lane | 2001-11-21 |
| | |||
* | Insert CommandCounterIncrement call into SPI_cursor_open. | Tom Lane | 2001-11-21 |
| | |||
* | Tweak interval_avg support to avoid coredump with Alpha/Tru64 compiler. | Tom Lane | 2001-11-21 |
| | | | | Per report from Bernd Tegge. | ||
* | Update regress tests to reflect removal of 'current'. | Tom Lane | 2001-11-21 |
| | |||
* | Add a few new time zones, and list every time zone mentioned in my | Thomas G. Lockhart | 2001-11-21 |
| | | | | | Linux box's time zone database. Do not allow 'current' as a date/time input value. | ||
* | Repair swapped sign for time minus time routine (time_mi_time()). | Thomas G. Lockhart | 2001-11-21 |
| | | | | Problem reported by Manuel Sugawara (masm@fciencias.unam.mx). | ||
* | Allow 'PostgreSQL' as a date/time formatting style. Formerly, recognized | Thomas G. Lockhart | 2001-11-21 |
| | | | | 'Postgres' only, but now accepts both. | ||
* | I think it's patch's size problem that I can't | Bruce Momjian | 2001-11-21 |
| | | | | | | | | | | | | | | 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 | ||
* | // -> /* */, per Tatsuo. | Bruce Momjian | 2001-11-21 |
| | |||
* | Bruce's octet_length change breaks this regression test. | Tom Lane | 2001-11-20 |
| | |||
* | Add mention of template1 usage. | Bruce Momjian | 2001-11-20 |
| | |||
* | Some minor tweaks of REINDEX processing: grab exclusive lock a littleREL7_2_BETA3 | Tom Lane | 2001-11-20 |
| | | | | earlier, make error checks more uniform. | ||
* | Simplify pg_convert() in that it calls pg_convert2 using new fmgr interface. | Tatsuo Ishii | 2001-11-20 |
| | |||
* | Double quotes in ln command to guard against spaces in path. | Tom Lane | 2001-11-20 |
| | |||
* | Change 'return ;' to 'return;'; remove space. | Bruce Momjian | 2001-11-19 |
| | |||
* | Indent jdbc case labels using pgjindent. | Bruce Momjian | 2001-11-19 |
| | |||
* | More jdbc comment cleanups. Code looks very nice now. | Bruce Momjian | 2001-11-19 |
| | |||
* | Update pgindent README so it gets *.java.in files. | Bruce Momjian | 2001-11-19 |
| | |||
* | JDBC indenting, comment cleanups. | Bruce Momjian | 2001-11-19 |
| | |||
* | Tweak format_type so that we get good behavior for both column type | Tom Lane | 2001-11-19 |
| | | | | | display (with a typemod) and function arg/result type display (without a typemod). | ||
* | Fix arg coerect match text type, per Tom. | Bruce Momjian | 2001-11-19 |
| | |||
* | Make text octet_length() return non-compressed length to be consistent | Bruce Momjian | 2001-11-19 |
| | | | | with other data types, per disucssion. Encoding issue still open. | ||
* | Grammatical and spelling fixes. | Tom Lane | 2001-11-19 |
| | |||
* | Fix nasty bugs in pg_convert() and pg_convert2(). | Tatsuo Ishii | 2001-11-19 |
| | | | | | | o they sometimes returns a result garbage string appended. o they do not work if client encoding is different from server encoding | ||
* | Fix comment at top of file to match file name. | Hiroshi Inoue | 2001-11-19 |
| | |||
* | pg_restore should exit with status 0, not 1, on success. | Tom Lane | 2001-11-19 |
| | |||
* | A bunch of small doco updates motivated by scanning the comments on | Tom Lane | 2001-11-19 |
| | | | | the interactive docs. | ||
* | Add example of using 'sameuser' followed by 'all' pg_hba records to | Tom Lane | 2001-11-18 |
| | | | | | enforce a limit on who can connect to databases other than their own. From a recent discussion in pg-admin. | ||
* | Improve comments about duplicate files. | Bruce Momjian | 2001-11-18 |
| |