Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Update for recent developments (C++, shlib), minor fixes | Peter Eisentraut | 2000-11-05 |
| | |||
* | UNION select in a CREATE RULE caused a weird error, because transformRuleStmt | Tom Lane | 2000-11-05 |
| | | | | | got confused by 'dummy' targetlist built for the UNION's toplevel query. Fix by making dummy targetlist a little less cheesy. | ||
* | Update TODO list. | Bruce Momjian | 2000-11-05 |
| | |||
* | Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases where | Tom Lane | 2000-11-05 |
| | | | | | | the grammar did not allow redundant parentheses around sub-selects. Distinguish LIMIT ALL from LIMIT 0; make the latter behave as one would expect. | ||
* | Update for createlang options in docs. | Bruce Momjian | 2000-11-04 |
| | |||
* | more procedural doc cleanup | Bruce Momjian | 2000-11-04 |
| | |||
* | Make PROCEDURAL optional in CREATE/DROP LANGUAGE. | Bruce Momjian | 2000-11-04 |
| | |||
* | This patch should allow primary/foreign key | Bruce Momjian | 2000-11-04 |
| | | | | | | | definitions using inherited columns in the create table statement. Stephan Szabo | ||
* | Update FAQ_DEV. | Bruce Momjian | 2000-11-04 |
| | |||
* | Update FAQ_DEV. | Bruce Momjian | 2000-11-04 |
| | |||
* | Remove .SECONDARY: target again, because GNU make 3.78.1 will get mighty | Peter Eisentraut | 2000-11-04 |
| | | | | | | confused in src/interfaces/libpq for some reason. Seemingly, different GNU make versions have several mutually conflicting problems with implicit rule chains. Words are not sufficient... | ||
* | Separate CFLAGS_SL and CXXFLAGS_SL, to allow building with C and C++ | Peter Eisentraut | 2000-11-04 |
| | | | | | compilers from different providers. (Especially important since the C++ compiler that goes with your favourite C compiler might not work.) | ||
* | Put -Ae into CC not CFLAGS, since it's not optional. | Peter Eisentraut | 2000-11-04 |
| | |||
* | If CFLAGS was specified in the environment, use that, not what the template | Peter Eisentraut | 2000-11-04 |
| | | | | says. | ||
* | This is no longer used since we have the 'resultmap'. | Peter Eisentraut | 2000-11-04 |
| | |||
* | Since the backend now handles relative PGDATA, initdb doesn't have to work | Peter Eisentraut | 2000-11-04 |
| | | | | around anymore. | ||
* | Make the backend grok relative paths for the data directory by converting | Peter Eisentraut | 2000-11-04 |
| | | | | it to an absolute path. | ||
* | autoconf | Bruce Momjian | 2000-11-04 |
| | |||
* | Fix for missing EUC_TW encoding | Tatsuo Ishii | 2000-11-04 |
| | |||
* | outdated and obsolete | Peter Eisentraut | 2000-11-03 |
| | |||
* | Add global .SECONDARY: target to not allow make to delete intermediate | Peter Eisentraut | 2000-11-03 |
| | | | | | | target files in implicit rule chains. That might have been a cool idea but it seems to be too buggy to work, as it caused spurious recompiles in several places. | ||
* | Minor code cleanups, make in_group() check faster. | Tom Lane | 2000-11-03 |
| | |||
* | Fix bug reported by bobson: aclinsert3 would delete the 'world' entry | Tom Lane | 2000-11-03 |
| | | | | | from an ACL list if it had no permissions remaining, which confused aclcheck terribly. Also clean up code a little. | ||
* | Add configure check to see whether <string.h> and <strings.h> may both be | Peter Eisentraut | 2000-11-03 |
| | | | | | | | included, and then include <strings.h> if so. Several systems already needed <strings.h> anyway. Some new systems that claim to conform to the Unix 9x "standard" do not declare str[n]casemp() in string.h, and C99 compilers will not like that. | ||
* | pg_variable is not used in WAL version now. | Vadim B. Mikheev | 2000-11-03 |
| | |||
* | Parser sync. | Michael Meskes | 2000-11-03 |
| | |||
* | Improve inv_getsize() per suggestion from Denis Perchine; also fix | Tom Lane | 2000-11-02 |
| | | | | thinkos in inv_seek(). | ||
* | Peter forgot to fix {operator} rule to match modified definition of | Tom Lane | 2000-11-02 |
| | | | | 'self' characters. | ||
* | Fix insufficiently-parenthesized macro definitions. | Tom Lane | 2000-11-02 |
| | | | | No known bug here, but... | ||
* | Remove pg_dumpaccounts from 7.1 tree. | Bruce Momjian | 2000-11-02 |
| | |||
* | Update TODO list. | Bruce Momjian | 2000-11-02 |
| | |||
* | Add pg_dumpall --accounts-only option. | Peter Eisentraut | 2000-11-02 |
| | |||
* | Update TODO list. | Bruce Momjian | 2000-11-02 |
| | |||
* | Allow initdb to handle relative paths for PGDATA, by converting them to | Peter Eisentraut | 2000-11-02 |
| | | | | absolute before starting a backend. | ||
* | Change bool to boolean in docs. | Bruce Momjian | 2000-11-02 |
| | |||
* | Pass on all CPPFLAGS that look like -I* to the PL/Perl build. | Peter Eisentraut | 2000-11-02 |
| | | | | (This previously worked, but must have gotten lost somewhere...) | ||
* | Added utility script pg_dumpaccounts to contrib. | Jan Wieck | 2000-11-02 |
| | | | | | | Derived from pg_dumpall it just dumps users and groups. Jan | ||
* | autoconf | Bruce Momjian | 2000-11-02 |
| | |||
* | Add runtime configuration options to control permission bits and group | Peter Eisentraut | 2000-11-01 |
| | | | | owner of unix socket. | ||
* | Forgot to check page LSN and unlock buffer in btree_xlog_delete - fixed. | Vadim B. Mikheev | 2000-11-01 |
| | | | | (Thanks to Tatsuo Ishii for finding bug) | ||
* | Fixed minor bug in ResultSet for jdbc2 reported by Matthew Denner that ↵ | Peter Mount | 2000-11-01 |
| | | | | absolute doesnt handle negative row numbers correctly. | ||
* | Fix for PQsetdb port parameter due to the interface change. | Tatsuo Ishii | 2000-11-01 |
| | | | | PQsetdb no more recognize "" as the default port number. | ||
* | Fix recovery cache code (thanks to Peter Eisentraut for | Vadim B. Mikheev | 2000-10-31 |
| | | | | pointing to bug). | ||
* | This is the minimal version of the Darwin support patch from | Peter Eisentraut | 2000-10-31 |
| | | | | | | | Bruce Hartzler <bruceh@mail.utexas.edu>. It contains shared library support, regression test map, and the usual template files. The dynamic loader is missing, the spin lock code apparently doesn't assemble due to syntax problems, and semaphores are to be hoped for from Apple. | ||
* | Determine CXXFLAGS after the C++ compiler was detected. Also honor | Peter Eisentraut | 2000-10-31 |
| | | | | --enable-debug and environment variable override. | ||
* | Added patch by Christof Petig <christof.petig@wtal.de> that fixes some bugs ↵ | Michael Meskes | 2000-10-31 |
| | | | | in preproc.y. | ||
* | Use $(filter ...), not $(findstring ...). | Peter Eisentraut | 2000-10-31 |
| | |||
* | Added long-standing transaction when restoring BLOBS (uses commit every ↵ | Philip Warner | 2000-10-31 |
| | | | | | | BLOB_BATCH_SIZE) Prevent dumping of languages from template1. | ||
* | Change internal string representation of BitString node to include a | Peter Eisentraut | 2000-10-31 |
| | | | | | leading 'b', as it appears to be more convenient this way for the input and node functions. | ||
* | Hashing functions from Marko Kreen <marko@l-t.ee> | Peter Eisentraut | 2000-10-31 |
| |