aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* New CHECKPOINT command.Vadim B. Mikheev2000-11-05
| | | | | Auto removing of offline log files and creating new file at checkpoint time.
* Add some configure checks for DocBook and related tools. With a somewhatPeter Eisentraut2000-11-05
| | | | | standard installation layout it should be possible to build the HTML and print documentation without additional manual setup.
* UNION select in a CREATE RULE caused a weird error, because transformRuleStmtTom Lane2000-11-05
| | | | | got confused by 'dummy' targetlist built for the UNION's toplevel query. Fix by making dummy targetlist a little less cheesy.
* Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases whereTom Lane2000-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.
* Make PROCEDURAL optional in CREATE/DROP LANGUAGE.Bruce Momjian2000-11-04
|
* This patch should allow primary/foreign keyBruce Momjian2000-11-04
| | | | | | | definitions using inherited columns in the create table statement. Stephan Szabo
* Remove .SECONDARY: target again, because GNU make 3.78.1 will get mightyPeter Eisentraut2000-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 Eisentraut2000-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 Eisentraut2000-11-04
|
* This is no longer used since we have the 'resultmap'.Peter Eisentraut2000-11-04
|
* Since the backend now handles relative PGDATA, initdb doesn't have to workPeter Eisentraut2000-11-04
| | | | around anymore.
* Make the backend grok relative paths for the data directory by convertingPeter Eisentraut2000-11-04
| | | | it to an absolute path.
* Fix for missing EUC_TW encodingTatsuo Ishii2000-11-04
|
* outdated and obsoletePeter Eisentraut2000-11-03
|
* Add global .SECONDARY: target to not allow make to delete intermediatePeter Eisentraut2000-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 Lane2000-11-03
|
* Fix bug reported by bobson: aclinsert3 would delete the 'world' entryTom Lane2000-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 bePeter Eisentraut2000-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. Mikheev2000-11-03
|
* Parser sync.Michael Meskes2000-11-03
|
* Improve inv_getsize() per suggestion from Denis Perchine; also fixTom Lane2000-11-02
| | | | thinkos in inv_seek().
* Peter forgot to fix {operator} rule to match modified definition ofTom Lane2000-11-02
| | | | 'self' characters.
* Fix insufficiently-parenthesized macro definitions.Tom Lane2000-11-02
| | | | No known bug here, but...
* Add pg_dumpall --accounts-only option.Peter Eisentraut2000-11-02
|
* Allow initdb to handle relative paths for PGDATA, by converting them toPeter Eisentraut2000-11-02
| | | | absolute before starting a backend.
* Change bool to boolean in docs.Bruce Momjian2000-11-02
|
* Pass on all CPPFLAGS that look like -I* to the PL/Perl build.Peter Eisentraut2000-11-02
| | | | (This previously worked, but must have gotten lost somewhere...)
* Add runtime configuration options to control permission bits and groupPeter Eisentraut2000-11-01
| | | | owner of unix socket.
* Forgot to check page LSN and unlock buffer in btree_xlog_delete - fixed.Vadim B. Mikheev2000-11-01
| | | | (Thanks to Tatsuo Ishii for finding bug)
* Fixed minor bug in ResultSet for jdbc2 reported by Matthew Denner that ↵Peter Mount2000-11-01
| | | | absolute doesnt handle negative row numbers correctly.
* Fix recovery cache code (thanks to Peter Eisentraut forVadim B. Mikheev2000-10-31
| | | | pointing to bug).
* This is the minimal version of the Darwin support patch fromPeter Eisentraut2000-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 honorPeter Eisentraut2000-10-31
| | | | --enable-debug and environment variable override.
* Added patch by Christof Petig <christof.petig@wtal.de> that fixes some bugs ↵Michael Meskes2000-10-31
| | | | in preproc.y.
* Use $(filter ...), not $(findstring ...).Peter Eisentraut2000-10-31
|
* Added long-standing transaction when restoring BLOBS (uses commit every ↵Philip Warner2000-10-31
| | | | | | BLOB_BATCH_SIZE) Prevent dumping of languages from template1.
* Change internal string representation of BitString node to include aPeter Eisentraut2000-10-31
| | | | | leading 'b', as it appears to be more convenient this way for the input and node functions.
* Change the parser to convert SQL "position" and "substring" syntax toPeter Eisentraut2000-10-31
| | | | | | | | | | position() and substring() functions, so that it works transparently for bit types as well. Alias the text functions appropriately. Add position() for bit types. Add new constant node T_BitString that represents literals of the form B'1001 and pass those to zpbit type.
* Disallow zero-length delimited identifier (per SQL).Peter Eisentraut2000-10-30
|
* Sync preproc.y with gram.y.Michael Meskes2000-10-30
|
* Add support for code conversion between Unicode and other encodings.Tatsuo Ishii2000-10-30
| | | | | | Supported encodings are: EUC_JP, EUC_CN, EUC_KR, EUC_TW, Shift JIS, Big5, ISO8859-[1-5]. TODO: testings! and documentations...
* Avoid dependency on backend's multibyte module as possible.Tatsuo Ishii2000-10-30
| | | | | Now frontend/libpq has its own version of pg_encoding_to_char and pg_char_to_encoding.
* Add new configure option "--enable-uniconv" that enables automaticTatsuo Ishii2000-10-30
| | | | | | | code conversion between Unicode and other encodings. Note that this option requires --enable-multibyte also. The reason why this is optional is that the feature requires huge mapping tables and I don't think every user need the feature.
* include pg_wchar.h to import a fucntion prototype of pg_mbcliplenTatsuo Ishii2000-10-30
|
* WAL fixes.Vadim B. Mikheev2000-10-29
|
* update flags.Bruce Momjian2000-10-29
|
* Automatic dependency tracking for C++ (GCC only)Peter Eisentraut2000-10-29
|
* Remove special treatment of '|' operator, in the spirit of "sane" binaryPeter Eisentraut2000-10-29
| | | | operators.
* USE_POSIX_TIME replaced by HAVE_TM_ZONE || HAVE_INT_TIMEZONE, which arePeter Eisentraut2000-10-29
| | | | | | | | equivalent. In linux.h there were some #undef HAVE_INT_TIMEZONE, which are useless because HAVE_TM_ZONE overrides it anyway, and messing with configure results isn't cool.
* Omit perl and python interfaces when making temporary installation.Peter Eisentraut2000-10-29
|