aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* 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
|
* Should be "test =", not "test ==".Peter Eisentraut2000-10-29
|
* Removed multibyte stuff since client does not know about encoding in the ↵Michael Meskes2000-10-29
| | | | backendFixed quoting bug reported by Sascha Demetrio (sd@b-comp.de).
* #define JMP_BUF has been unnecessary since the arrival of the sigsetjmpPeter Eisentraut2000-10-28
| | | | test.
* As we don't use struct dirent, the #define SYSV_DIRENT is useless. If wePeter Eisentraut2000-10-28
| | | | | | every do need it we'd better use AC_HEADER_DIRENT from Autoconf. #define NO_EMPTY_STMTS is completely unused.
* Make initdb safe against usingPeter Eisentraut2000-10-28
| | | | | | a) mismatching backend program, by checking --version output b) mismatching bki files, by putting a version-identifying comment atop those files.
* Back out change to gram.y for parens.Bruce Momjian2000-10-28
|
* beos fixes from Cyril VELTERBruce Momjian2000-10-28
|
* WALVadim B. Mikheev2000-10-28
|
* Okay, here's my attempt at fixing the problems with parentheses inBruce Momjian2000-10-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Remove compiler warnings (add missing include files). Only link againstPeter Eisentraut2000-10-28
| | | | -lm if it's actually there.
* Add --version and --help options to "postgres".Peter Eisentraut2000-10-28
|
* Make use of system-specific linker option to embed shared library searchPeter Eisentraut2000-10-27
| | | | | | path into executables and shared libraries (-rpath or -R for most). Can be disabled with --disable-rpath, since some binary packaging standards do not like this option.
* Use compiler driver, not linker, to link shared libraries on Unixware.Peter Eisentraut2000-10-27
|
* Make regression tests work with VPATH builds.Peter Eisentraut2000-10-27
|
* Fix for drop db message format changesTatsuo Ishii2000-10-27
|
* Remove gcc-only macro definitionTatsuo Ishii2000-10-27
|
* Disallow bits beyond the mask length for CIDR values, per discussionTom Lane2000-10-27
| | | | | | | on pghackers. Arrange for the sort ordering of general INET values to be network part as major sort key, host part as minor sort key. I did not force an initdb for this change, but anyone who's running indexes on general INET values may need to recreate those indexes.
* Re-implement LIMIT/OFFSET as a plan node type, instead of a hack inTom Lane2000-10-26
| | | | | | ExecutorRun. This allows LIMIT to work in a view. Also, LIMIT in a cursor declaration will behave in a reasonable fashion, whereas before it was overridden by the FETCH count.
* Fix breakage I introduced yesterday in MULTIBYTE compilations.Tom Lane2000-10-26
| | | | Sorry 'bout that, chief...
* Clean up gcc warnings in MULTIBYTE mode.Tom Lane2000-10-26
|
* Clean up broken test for whether to wait for input in SSL case.Tom Lane2000-10-25
| | | | Per discussion with Magnus Hagander.
* Ensure clause_selectivity() behaves sanely when examining an uplevel VarTom Lane2000-10-25
| | | | or a Var that references a subquery output.
* Teach psql about new relkind for views.Tom Lane2000-10-25
|