summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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.
2000-10-31Change the parser to convert SQL "position" and "substring" syntax toPeter Eisentraut
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.
2000-10-30Disallow zero-length delimited identifier (per SQL).Peter Eisentraut
2000-10-30Sync preproc.y with gram.y.Michael Meskes
2000-10-30Add support for code conversion between Unicode and other encodings.Tatsuo Ishii
Supported encodings are: EUC_JP, EUC_CN, EUC_KR, EUC_TW, Shift JIS, Big5, ISO8859-[1-5]. TODO: testings! and documentations...
2000-10-30Avoid dependency on backend's multibyte module as possible.Tatsuo Ishii
Now frontend/libpq has its own version of pg_encoding_to_char and pg_char_to_encoding.
2000-10-30Add new configure option "--enable-uniconv" that enables automaticTatsuo Ishii
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.
2000-10-30include pg_wchar.h to import a fucntion prototype of pg_mbcliplenTatsuo Ishii
2000-10-29WAL fixes.Vadim B. Mikheev
2000-10-29update flags.Bruce Momjian
2000-10-29Automatic dependency tracking for C++ (GCC only)Peter Eisentraut
2000-10-29Remove special treatment of '|' operator, in the spirit of "sane" binaryPeter Eisentraut
operators.
2000-10-29USE_POSIX_TIME replaced by HAVE_TM_ZONE || HAVE_INT_TIMEZONE, which arePeter Eisentraut
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.
2000-10-29Omit perl and python interfaces when making temporary installation.Peter Eisentraut
2000-10-29Should be "test =", not "test ==".Peter Eisentraut
2000-10-29Removed multibyte stuff since client does not know about encoding in the ↵Michael Meskes
backendFixed quoting bug reported by Sascha Demetrio (sd@b-comp.de).
2000-10-28#define JMP_BUF has been unnecessary since the arrival of the sigsetjmpPeter Eisentraut
test.
2000-10-28As we don't use struct dirent, the #define SYSV_DIRENT is useless. If wePeter Eisentraut
every do need it we'd better use AC_HEADER_DIRENT from Autoconf. #define NO_EMPTY_STMTS is completely unused.
2000-10-28Make initdb safe against usingPeter Eisentraut
a) mismatching backend program, by checking --version output b) mismatching bki files, by putting a version-identifying comment atop those files.
2000-10-28Back out change to gram.y for parens.Bruce Momjian
2000-10-28beos fixes from Cyril VELTERBruce Momjian
2000-10-28WALVadim B. Mikheev
2000-10-28Okay, here's my attempt at fixing the problems with parentheses inBruce Momjian
subqueries. It passes the normal 'runcheck' tests, and I've tried a few simple things like select 1 as foo union (((((select 2))))) order by foo; There are a few things that it doesn't do that have been talked about here at least a little: 1) It doesn't allow things like "IN(((select 1)))" -- the select here has to be at the top level. This is not new. 2) It does NOT preserve the odd syntax I found when I started looking at this, where a SELECT statement could begin with parentheses. Thus, (SELECT a from foo) order by a; fails. I have preserved the ability, used in the regression tests, to have a single select statement in what appears to be a RuleActionMulti (but wasn't -- the parens were part of select_clause syntax). In my version, this is a special form. This may cause some discussion: I have differentiated the two kinds of RuleActionMulti. Perhaps nobody knew there were two kinds, because I don't think the second form appears in the regression tests. This one uses square brackets instead of parentheses, but originally was otherwise the same as the one in parentheses. In this version of gram.y, the square bracket form treats SELECT statements the same as the other allowed statements. As discussed before on this list, psql cannot make sense out of the results of such a thing, but an application might. And I have designs on just such an application. ++ kevin o'gorman