summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2000-11-06Update geometry for FreeBSD 4.1 (same as 4.0)Peter Eisentraut
2000-11-06Add -V option to backend, to show version, since --version doesn't seemPeter Eisentraut
to work everywhere. Also, on FreeBSD you need to set the optreset variable to 1 before parsing the command line a second time with getopt().
2000-11-06Fix GNU make detection.Peter Eisentraut
(The test 'make --version' with FreeBSD make (and potentially others) would just reinvoke make on the same Makefile, resulting in an infinite loop.)
2000-11-06Add explicit ORDER BYs in a couple of cases --- seems to be necessaryTom Lane
to get platform-independent results.
2000-11-06I think Thomas missed an update here...Tom Lane
2000-11-06Back out aix makefile patch.Bruce Momjian
2000-11-06Makefile.ports (copied from makefiles/Makefile.aix) is included beforeBruce Momjian
the default target in GNUmakefile is reached. This patch calls that default target. Pete Forman
2000-11-06Add support for AT TIME ZONE syntax.Thomas G. Lockhart
2000-11-06Add tests for more INTERVAL syntax.Thomas G. Lockhart
Add more tests for JOIN syntax. All tests pass on my Linux box (except for the usual couple of lines for geometry).
2000-11-06Add functions to support AT TIME ZONE syntax.Thomas G. Lockhart
Update catalog version to today.
2000-11-06Fix INTERVAL output when year/month has different sign as day/hour etc.Thomas G. Lockhart
Previously, all fields were unsigned, with only a trailing "ago" to indicate negative intervals. Now, ISO format does not use "ago", and and the traditional PostgreSQL format has the first numeric field unsigned with "ago" supporting that field. So "1 month - 2 days ago" is two days less than a month in the past. Fix interval arithmetic across daylight savings time boundaries. Previously, most math across boundaries introduced a one hour offset. Allow some date/time functions to return NULL if called with NULL args. Implement functions for AT TIME ZONE support. Support "SAT" as an Australian time zone if USE_AUSTRALIAN_RULES is defined.
2000-11-06Implement AT TIME ZONE SQL9x syntax.Thomas G. Lockhart
AT is now a keyword but is not a reserved word.
2000-11-06Allow type resolution for UNKNOWN arguments to functions to fall back toThomas G. Lockhart
any available string type. Previously, all candidate choices must have fallen within the same "type category" for PostgreSQL to be willing to choose any of them. Need to apply the same fixup to operator type resolution.
2000-11-05New CHECKPOINT command.Vadim B. Mikheev
Auto removing of offline log files and creating new file at checkpoint time.
2000-11-05Add some configure checks for DocBook and related tools. With a somewhatPeter Eisentraut
standard installation layout it should be possible to build the HTML and print documentation without additional manual setup.
2000-11-05UNION select in a CREATE RULE caused a weird error, because transformRuleStmtTom Lane
got confused by 'dummy' targetlist built for the UNION's toplevel query. Fix by making dummy targetlist a little less cheesy.
2000-11-05Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases whereTom Lane
the grammar did not allow redundant parentheses around sub-selects. Distinguish LIMIT ALL from LIMIT 0; make the latter behave as one would expect.
2000-11-04Make PROCEDURAL optional in CREATE/DROP LANGUAGE.Bruce Momjian
2000-11-04This patch should allow primary/foreign keyBruce Momjian
definitions using inherited columns in the create table statement. Stephan Szabo
2000-11-04Remove .SECONDARY: target again, because GNU make 3.78.1 will get mightyPeter Eisentraut
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...
2000-11-04Separate CFLAGS_SL and CXXFLAGS_SL, to allow building with C and C++Peter Eisentraut
compilers from different providers. (Especially important since the C++ compiler that goes with your favourite C compiler might not work.)
2000-11-04Put -Ae into CC not CFLAGS, since it's not optional.Peter Eisentraut
2000-11-04This is no longer used since we have the 'resultmap'.Peter Eisentraut
2000-11-04Since the backend now handles relative PGDATA, initdb doesn't have to workPeter Eisentraut
around anymore.
2000-11-04Make the backend grok relative paths for the data directory by convertingPeter Eisentraut
it to an absolute path.
2000-11-04Fix for missing EUC_TW encodingTatsuo Ishii
2000-11-03outdated and obsoletePeter Eisentraut
2000-11-03Add global .SECONDARY: target to not allow make to delete intermediatePeter Eisentraut
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.
2000-11-03Minor code cleanups, make in_group() check faster.Tom Lane
2000-11-03Fix bug reported by bobson: aclinsert3 would delete the 'world' entryTom Lane
from an ACL list if it had no permissions remaining, which confused aclcheck terribly. Also clean up code a little.
2000-11-03Add configure check to see whether <string.h> and <strings.h> may both bePeter Eisentraut
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.
2000-11-03pg_variable is not used in WAL version now.Vadim B. Mikheev
2000-11-03Parser sync.Michael Meskes
2000-11-02Improve inv_getsize() per suggestion from Denis Perchine; also fixTom Lane
thinkos in inv_seek().
2000-11-02Peter forgot to fix {operator} rule to match modified definition ofTom Lane
'self' characters.
2000-11-02Fix insufficiently-parenthesized macro definitions.Tom Lane
No known bug here, but...
2000-11-02Add pg_dumpall --accounts-only option.Peter Eisentraut
2000-11-02Allow initdb to handle relative paths for PGDATA, by converting them toPeter Eisentraut
absolute before starting a backend.
2000-11-02Change bool to boolean in docs.Bruce Momjian
2000-11-02Pass on all CPPFLAGS that look like -I* to the PL/Perl build.Peter Eisentraut
(This previously worked, but must have gotten lost somewhere...)
2000-11-01Add runtime configuration options to control permission bits and groupPeter Eisentraut
owner of unix socket.
2000-11-01Forgot to check page LSN and unlock buffer in btree_xlog_delete - fixed.Vadim B. Mikheev
(Thanks to Tatsuo Ishii for finding bug)
2000-11-01Fixed minor bug in ResultSet for jdbc2 reported by Matthew Denner that ↵Peter Mount
absolute doesnt handle negative row numbers correctly.
2000-10-31Fix recovery cache code (thanks to Peter Eisentraut forVadim B. Mikheev
pointing to bug).
2000-10-31This is the minimal version of the Darwin support patch fromPeter Eisentraut
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.
2000-10-31Determine CXXFLAGS after the C++ compiler was detected. Also honorPeter Eisentraut
--enable-debug and environment variable override.
2000-10-31Added patch by Christof Petig <christof.petig@wtal.de> that fixes some bugs ↵Michael Meskes
in preproc.y.
2000-10-31Use $(filter ...), not $(findstring ...).Peter Eisentraut
2000-10-31Added long-standing transaction when restoring BLOBS (uses commit every ↵Philip Warner
BLOB_BATCH_SIZE) Prevent dumping of languages from template1.
2000-10-31Change internal string representation of BitString node to include aPeter Eisentraut
leading 'b', as it appears to be more convenient this way for the input and node functions.