Tom Lane
11f7b29054
Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases where
...
the grammar did not allow redundant parentheses around sub-selects.
Distinguish LIMIT ALL from LIMIT 0; make the latter behave as one would
expect.
26 years ago
Bruce Momjian
4b71943bb2
Make PROCEDURAL optional in CREATE/DROP LANGUAGE.
26 years ago
Bruce Momjian
90c63942c4
This patch should allow primary/foreign key
...
definitions using inherited columns in the
create table statement.
Stephan Szabo
26 years ago
Peter Eisentraut
b61f681f23
Remove .SECONDARY: target again, because GNU make 3.78.1 will get mighty
...
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...
26 years ago
Peter Eisentraut
c7a794998a
Separate CFLAGS_SL and CXXFLAGS_SL, to allow building with C and C++
...
compilers from different providers. (Especially important since the
C++ compiler that goes with your favourite C compiler might not work.)
26 years ago
Peter Eisentraut
1fdf2edc9d
Put -Ae into CC not CFLAGS, since it's not optional.
26 years ago
Peter Eisentraut
4aa1aabd7a
This is no longer used since we have the 'resultmap'.
26 years ago
Peter Eisentraut
1f2f53c648
Since the backend now handles relative PGDATA, initdb doesn't have to work
...
around anymore.
26 years ago
Peter Eisentraut
abfb417574
Make the backend grok relative paths for the data directory by converting
...
it to an absolute path.
26 years ago
Tatsuo Ishii
6862a05364
Fix for missing EUC_TW encoding
26 years ago
Peter Eisentraut
7301660048
outdated and obsolete
26 years ago
Peter Eisentraut
a18490b73d
Add global .SECONDARY: target to not allow make to delete intermediate
...
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.
26 years ago
Tom Lane
6be6a185d9
Minor code cleanups, make in_group() check faster.
26 years ago
Tom Lane
aceec9ae1a
Fix bug reported by bobson: aclinsert3 would delete the 'world' entry
...
from an ACL list if it had no permissions remaining, which confused
aclcheck terribly. Also clean up code a little.
26 years ago
Peter Eisentraut
dfda21e7a6
Add configure check to see whether <string.h> and <strings.h> may both be
...
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.
26 years ago
Vadim B. Mikheev
b98ba2a04c
pg_variable is not used in WAL version now.
26 years ago
Michael Meskes
b703c127ed
Parser sync.
26 years ago
Tom Lane
94d8bbe5fb
Improve inv_getsize() per suggestion from Denis Perchine; also fix
...
thinkos in inv_seek().
26 years ago
Tom Lane
db263da468
Peter forgot to fix {operator} rule to match modified definition of
...
'self' characters.
26 years ago
Tom Lane
7a64100164
Fix insufficiently-parenthesized macro definitions.
...
No known bug here, but...
26 years ago
Peter Eisentraut
b7f4c64202
Add pg_dumpall --accounts-only option.
26 years ago
Peter Eisentraut
26c825e4b0
Allow initdb to handle relative paths for PGDATA, by converting them to
...
absolute before starting a backend.
26 years ago
Bruce Momjian
bc9b199c26
Change bool to boolean in docs.
26 years ago
Peter Eisentraut
54121b9a8b
Pass on all CPPFLAGS that look like -I* to the PL/Perl build.
...
(This previously worked, but must have gotten lost somewhere...)
26 years ago
Peter Eisentraut
d1bfa6c72e
Add runtime configuration options to control permission bits and group
...
owner of unix socket.
26 years ago
Vadim B. Mikheev
855ffa0be0
Forgot to check page LSN and unlock buffer in btree_xlog_delete - fixed.
...
(Thanks to Tatsuo Ishii for finding bug)
26 years ago
Peter Mount
961eb5716b
Fixed minor bug in ResultSet for jdbc2 reported by Matthew Denner that absolute doesnt handle negative row numbers correctly.
26 years ago
Vadim B. Mikheev
3706f08ace
Fix recovery cache code (thanks to Peter Eisentraut for
...
pointing to bug).
26 years ago
Peter Eisentraut
b99ee7f37d
This is the minimal version of the Darwin support patch from
...
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.
26 years ago
Peter Eisentraut
dc0f5cb090
Determine CXXFLAGS after the C++ compiler was detected. Also honor
...
--enable-debug and environment variable override.
26 years ago
Michael Meskes
fae180f477
Added patch by Christof Petig <christof.petig@wtal.de> that fixes some bugs in preproc.y.
26 years ago
Peter Eisentraut
9cbcbf0fb3
Use $(filter ...), not $(findstring ...).
26 years ago
Philip Warner
44954fae08
Added long-standing transaction when restoring BLOBS (uses commit every BLOB_BATCH_SIZE)
...
Prevent dumping of languages from template1.
26 years ago
Peter Eisentraut
0babf31640
Change internal string representation of BitString node to include a
...
leading 'b', as it appears to be more convenient this way for the input
and node functions.
26 years ago
Peter Eisentraut
73874a06f0
Change the parser to convert SQL "position" and "substring" syntax to
...
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.
26 years ago
Peter Eisentraut
d397c1c8a2
Disallow zero-length delimited identifier (per SQL).
26 years ago
Michael Meskes
c7a3e0dfcb
Sync preproc.y with gram.y.
26 years ago
Tatsuo Ishii
1acf6f9c8e
Add support for code conversion between Unicode and other encodings.
...
Supported encodings are: EUC_JP, EUC_CN, EUC_KR, EUC_TW, Shift JIS,
Big5, ISO8859-[1-5].
TODO: testings! and documentations...
26 years ago
Tatsuo Ishii
0b10d35e2b
Avoid dependency on backend's multibyte module as possible.
...
Now frontend/libpq has its own version of pg_encoding_to_char
and pg_char_to_encoding.
26 years ago
Tatsuo Ishii
e5b6b0ebb9
Add new configure option "--enable-uniconv" that enables automatic
...
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.
26 years ago
Tatsuo Ishii
dd9dcd59cf
include pg_wchar.h to import a fucntion prototype of pg_mbcliplen
26 years ago
Vadim B. Mikheev
e3ba543525
WAL fixes.
26 years ago
Bruce Momjian
433cd770bc
update flags.
26 years ago
Peter Eisentraut
30402ce74a
Automatic dependency tracking for C++ (GCC only)
26 years ago
Peter Eisentraut
86f0812520
Remove special treatment of '|' operator, in the spirit of "sane" binary
...
operators.
26 years ago
Peter Eisentraut
525e1c4436
USE_POSIX_TIME replaced by HAVE_TM_ZONE || HAVE_INT_TIMEZONE, which are
...
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.
26 years ago
Peter Eisentraut
8b04311293
Omit perl and python interfaces when making temporary installation.
26 years ago
Peter Eisentraut
2044bdcca0
Should be "test =", not "test ==".
26 years ago
Michael Meskes
dfb12a9850
Removed multibyte stuff since client does not know about encoding in the backendFixed quoting bug reported by Sascha Demetrio (sd@b-comp.de).
26 years ago
Peter Eisentraut
4f82ab4c97
#define JMP_BUF has been unnecessary since the arrival of the sigsetjmp
...
test.
26 years ago