Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change Win32 rename/unlink timeout to 3 seconds.WIN32_DEV | Bruce Momjian | 2003-10-10 | 1 | -4/+4 |
| | |||||
* | Remove WIN32 console. | Bruce Momjian | 2003-09-12 | 4 | -36/+5 |
| | |||||
* | Remove derived files from WIN32_DEV branch. | Bruce Momjian | 2003-09-12 | 2 | -13/+1 |
| | |||||
* | Update list of generated files. | Bruce Momjian | 2003-09-08 | 1 | -13/+13 |
| | |||||
* | List derived files. | Bruce Momjian | 2003-09-08 | 1 | -0/+16 |
| | |||||
* | flex/bison stamp fix. | Bruce Momjian | 2003-09-08 | 2 | -3/+3 |
| | |||||
* | Force flex/bison files to be new. | Bruce Momjian | 2003-09-07 | 2 | -7/+13 |
| | |||||
* | For flex/bison files to be new. | Bruce Momjian | 2003-09-07 | 2 | -8/+8 |
| | |||||
* | Force flex/bison output files to be current. | Bruce Momjian | 2003-09-07 | 1 | -0/+7 |
| | |||||
* | Update WIN32 branch from CVS HEAD. | Bruce Momjian | 2003-09-07 | 10 | -58/+13 |
| | |||||
* | Update this branch to match CVS head, includes WIN32 improvements. | Bruce Momjian | 2003-09-07 | 383 | -83185/+80564 |
| | |||||
* | Rewrite array_cmp to not depend on deconstruct_array. Should be a little | Tom Lane | 2003-08-15 | 1 | -37/+46 |
| | | | | | faster, but more importantly does not leak memory. Still needs more work though, per my recent note to pgsql-hackers. | ||||
* | Add disk rotation idea to WAL todo emails. | Bruce Momjian | 2003-08-14 | 1 | -0/+139 |
| | |||||
* | Minor copy-editing. | Tom Lane | 2003-08-14 | 4 | -39/+42 |
| | |||||
* | Adjustment for unixware threading. | Bruce Momjian | 2003-08-14 | 1 | -1/+3 |
| | |||||
* | Mark unixware as having threaded support. | Bruce Momjian | 2003-08-14 | 1 | -0/+4 |
| | |||||
* | Fix longstanding thinko in SSL protocol documentation: the server's | Tom Lane | 2003-08-14 | 1 | -3/+3 |
| | | | | initial response is 'S', not 'Y', when it is willing to do SSL. | ||||
* | Add missing quotes. | Tom Lane | 2003-08-14 | 1 | -4/+4 |
| | |||||
* | Someone moved PageOutput here from common.c, but forgot to move all | Tom Lane | 2003-08-14 | 1 | -1/+5 |
| | | | | the #includes it depends on. | ||||
* | Remove unnecessary #include's (see c.h). | Tom Lane | 2003-08-14 | 1 | -3/+1 |
| | |||||
* | Workaround for platforms that have getaddrinfo() without AI_NUMERICHOST. | Tom Lane | 2003-08-14 | 1 | -2/+10 |
| | | | | We don't actually need the flag, so just #define it as zero in such cases. | ||||
* | Handle double-quotes correctly in user names in ACL lists. | Tom Lane | 2003-08-14 | 2 | -21/+40 |
| | | | | Christopher Kings-Lynne | ||||
* | Document threading status. | Bruce Momjian | 2003-08-14 | 1 | -11/+40 |
| | | | | Update to POSIX getpwuid_r() function. | ||||
* | Adjust for compiler options for compiler bug. | Bruce Momjian | 2003-08-13 | 1 | -1/+4 |
| | | | | Larry Rosenman | ||||
* | libpq failed to cope with COPY FROM STDIN if the command was issued | Tom Lane | 2003-08-13 | 5 | -20/+66 |
| | | | | | | | | | | via extended query protocol, because it sends Sync right after Execute without realizing that the command to be executed is COPY. There seems to be no reasonable way for it to realize that, either, so the best fix seems to be to make the backend ignore Sync during copy-in mode. Bit of a wart on the protocol, but little alternative. Also, libpq must send another Sync after terminating the COPY, if the command was issued via Execute. | ||||
* | Add PQexecPrepared() and PQsendQueryPrepared() functions, to allow | Tom Lane | 2003-08-13 | 5 | -70/+266 |
| | | | | | | libpq users to perform Bind/Execute of previously prepared statements. Per yesterday's discussion, this offers enough performance improvement to justify bending the 'no new features during beta' rule. | ||||
* | Move MemoryContextCheck() call from bottom of PostgresMain loop to | Tom Lane | 2003-08-13 | 1 | -12/+8 |
| | | | | | | just before CommitTransactionCommand(). This is a more sensible place to put it since commit discards a lot of contexts, and we'd not find out about stomps affecting only transaction-local contexts. | ||||
* | Correct error messages | Teodor Sigaev | 2003-08-13 | 1 | -2/+2 |
| | |||||
* | More accuracy work with MinWords option of headline function | Teodor Sigaev | 2003-08-13 | 1 | -5/+19 |
| | |||||
* | I'm quite fond of doing VPATH builds, i.e. building outside the source | Bruce Momjian | 2003-08-13 | 2 | -4/+7 |
| | | | | | | | | | | tree. This also catches lots of little Makefile bugs, so here's a small patch for one of them (replacing an explicit reference to thread.c with a reference to it as the first prerequsite of the rule makes make look for it in the place where it was found (the source tree) rather than in the build tree. (using GNU make 3.79.1) John Gray | ||||
* | Include 'IPv4', 'IPv6', or 'Unix' in socket-creation failure messages, | Tom Lane | 2003-08-12 | 1 | -5/+37 |
| | | | | | | in hopes of soothing fears of those with partial IPv6 support. Still an open question whether we should report EAFNOSUPPORT errors at all, though. | ||||
* | Cope with NoData message from backend. Needed for case where | Tom Lane | 2003-08-12 | 1 | -3/+13 |
| | | | | PQexecParams is used with a statement that doesn't return data. | ||||
* | Marginal hacks to move some processing out of the per-client-message | Tom Lane | 2003-08-12 | 1 | -44/+45 |
| | | | | | processing loop; avoids extra overhead when using parse/bind/execute messages instead of single Query message. | ||||
* | Change some frequently-reached elog(DEBUG...) calls to ereport(DEBUG...) | Tom Lane | 2003-08-12 | 5 | -50/+96 |
| | | | | | for speed reasons. (ereport falls out much more quickly when no output is needed than elog does.) | ||||
* | Avoid unnecessary work when stats collection is disabled. Tighten | Tom Lane | 2003-08-12 | 1 | -101/+108 |
| | | | | search loop in pgstat_initstats. Per report from Gavin Sherry. | ||||
* | Applied patch from Oliver Jowett to clean up the jdbc regression test build | Barry Lind | 2003-08-11 | 2 | -48/+42 |
| | | | | | | Modified Files: jdbc/build.xml jdbc/org/postgresql/test/jdbc3/Jdbc3TestSuite.java | ||||
* | Rewriter and planner should use only resno, not resname, to identify | Tom Lane | 2003-08-11 | 15 | -116/+145 |
| | | | | | | | target columns in INSERT and UPDATE targetlists. Don't rely on resname to be accurate in ruleutils, either. This fixes bug reported by Donald Fraser, in which renaming a column referenced in a rule did not work very well. | ||||
* | Add: | Bruce Momjian | 2003-08-11 | 1 | -2/+3 |
| | | | | > * Prevent unneeded quoting in psql \d output using fmtId() | ||||
* | Applied patch from Oliver Jowett to better handle invalid input for getArray | Barry Lind | 2003-08-11 | 1 | -1/+3 |
| | | | | | | | (no longer throw an index out of range exception) Modified Files: jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java | ||||
* | Applied patch from Oliver Jowett to clean up some aditional warning messages | Barry Lind | 2003-08-11 | 1 | -3/+3 |
| | | | | | | | from ant. Modified Files: jdbc/build.xml | ||||
* | Applied patch from Oliver Jewett to fix a deprecation in newer versions of ant | Barry Lind | 2003-08-11 | 1 | -4/+7 |
| | | | | | Modified Files: jdbc/build.xml | ||||
* | Applied patch from Oliver Jewett to clean up the testing README file | Barry Lind | 2003-08-11 | 1 | -3/+3 |
| | | | | | Modified Files: jdbc/org/postgresql/test/README | ||||
* | Applied patch by Oliver Jowett to clean up some exception handling | Barry Lind | 2003-08-11 | 2 | -12/+4 |
| | | | | | | Modified Files: jdbc/org/postgresql/core/QueryExecutor.java jdbc/org/postgresql/util/PSQLException.java | ||||
* | Applied patch from Oliver Jowett to improve a buffer sizing. | Barry Lind | 2003-08-11 | 1 | -2/+2 |
| | | | | | Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java | ||||
* | Applied patch from Kim Ho to fix a regression against a 7.4 server. The result | Barry Lind | 2003-08-11 | 2 | -6/+10 |
| | | | | | | | | | | of transaction isolation level changed from uppercase to lower case between 7.3 and 7.4. In testing, a regression was also fixed in this area when talking to a 7.2 server due to changes in how notice messages are processed in the current code. Modified Files: jdbc/build.xml jdbc/org/postgresql/core/BaseStatement.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java | ||||
* | Code cleanup inspired by recent resname bug report (doesn't fix the bug | Tom Lane | 2003-08-11 | 12 | -317/+162 |
| | | | | | | | | yet, though). Avoid using nth() to fetch tlist entries; provide a common routine get_tle_by_resno() to search a tlist for a particular resno. This replaces a couple uses of nth() and a dozen hand-coded search loops. Also, replace a few uses of nth(length-1, list) with llast(). | ||||
* | Do not link in libwsock32 on non-win32 platforms. Improve grammar | Tom Lane | 2003-08-11 | 3 | -79/+96 |
| | | | | of thread-safety comments. | ||||
* | Translation updates | Peter Eisentraut | 2003-08-11 | 8 | -11419/+6002 |
| | |||||
* | Repair potential deadlock created by recent changes to recycle btree | Tom Lane | 2003-08-10 | 3 | -11/+67 |
| | | | | | | | | | | index pages: when _bt_getbuf asks the FSM for a free index page, it is possible (and, in some cases, even moderately likely) that the answer will be the same page that _bt_split is trying to split. _bt_getbuf already knew that the returned page might not be free, but it wasn't prepared for the possibility that even trying to lock the page could be problematic. Fix by doing a conditional rather than unconditional grab of the page lock. | ||||
* | Make various links point to specific places instead of entire parts | Tom Lane | 2003-08-10 | 10 | -25/+27 |
| | | | | (doubtless these are hangovers from the old separate-books days). |