| Commit message (Collapse) | Author | Age |
|
|
|
|
| |
prefer aCC as c++ compiler if hpux_cc is selected as template.
Doesn't solve the problem if you have g++ and not aCC, however...
|
|
|
|
|
|
|
|
| |
instead of our own halfway-there code. Add AC_STRUCT_TIMEZONE call
to check whether tm_zone exists in struct tm. Revise reading of template
file so that templates can define any variables they feel like (and,
indeed, can execute arbitrary shell code) rather than being constrained
to a fixed set of variable names.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
destructions in 6.4 source using purify.
(1) parser/gram.y:fmtId()
It writes n+3 bytes into n+1 byte-long memory area if mixed case or
non-ascii identifiers given.
(2) catalog/index.c:
ATTRIBUTE_TUPLE_SIZE bytes are allocated but
sizeof(FormData_pg_attribute) bytes are written. Note that
ATTRIBUTE_TUPLE_SIZE is smaller than
sizeof(FormData_pg_attribute). (for example, on solaris 2.6,
Tatsuo Ishii
|
|
|
|
|
|
|
|
|
|
| |
But it may be self-satisfied.
Please check my patch at the end of this posting.
Case 1. executor evaluates functions twice
Hiroshi Inoue
Inoue@tpf.co.jp
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Digital Uni x with both DEC cc and gcc) behaviour of modifying an
lvalue on the left side an d then using it on the right side of an
assignment. Since this code modifies the
dbname parameter, it was changing, for example, "dbname=template1"
into "dbname =emplate1".
David Smith Programmer P
|
|
|
|
|
|
|
|
|
|
| |
enabled PostgreSQL 6.4.
o binary cursor does not work
o pg_dumpall produces incorrect create database statemnt
Tatsuo Ishii
t-ishii@sra.co.jp
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Extend new type coersion techniques to aggregates.
Clean up a few elog() messages.
|
|
|
|
| |
Extend new type coersion techniques to aggregates.
|
|
|
|
|
|
|
| |
in the ACL code, and spell "GRANT RULE" correctly.
Apply patch from Oliver Elphick to not dump inherited constraints.
Apply patch from Constantin Teodorescu to dump table definitions with a
readable layout.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
SunOS has tas(), but not memmove or strerror, and its sprintf() doesn't
return int. Also, older versions of GNU Make don't like rules with
empty left-hand sides...
|
|
|
|
|
|
|
| |
instead of relying on port's os.h to tell us. (Needed for HPUX
where system major version is not enough info.)
configure unsets USE_TK if X libraries not found.
doc/Makefile uses gzcat or zcat as found by autoconf.
|
|
|
|
|
|
| |
than silently returning zero on some machines. Correct float8 regress test
to agree. Also fix pow() overflow/underflow check to work correctly on
HPUX.
|
|
|
|
| |
doesn't work there.
|
|
|
|
|
| |
doesn't work there. Fortunately the postmaster only has stdout and
stderr to flush.
|
|
|
|
|
|
| |
fail to consume the rest of the input string, and worse it would write
one more byte than it should into the buffer, probably resulting in coredump.
Fortunately there's a correct implementation next door in pqcomprim.c.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
builtin SPI commands by their old SPI_* names. New names are spi_*.
Jan - 11/23/1998
|
|
|
|
|
|
|
| |
selected when they match a prefix of the value. The previous method,
which stripped all version data from and then tried to match that
against .similar entries, was entirely useless when .similar contained
several entries for different version numbers of a single OS name.
|
|
|
|
| |
EXPLAIN all indices used.
|
| |
|
| |
|
|
|
|
| |
for each field of each tuple. Makes more difference than you'd think...
|
|
|
|
|
| |
This will fix the problem reported by Jose' Soares
when trying to cast a float to text.
|
| |
|
|
|
|
| |
More COS Query Service support.
|
|
|
|
| |
From: Taral <taral@cyberjunkie.com>
|
|
|
|
| |
a single printf() ... it'd work if fmtId() didn't use a static return area...
|
|
|
|
|
| |
Also supports the "analyze" mode, with or without specifying tables
and columns.
|
| |
|
|
|
|
| |
the table name. Problem reported by Billy Allie.
|
|
|
|
| |
We have not seen the end of this issue :-(.
|
| |
|
| |
|
|
|
|
|
|
| |
a backend core dump, because it was concatenating a potentially long
string onto another string that didn't necessarily have enough room.
Shame, shame.
|
|
|
|
|
|
| |
up if first string to be appended to an empty StringInfo was longer
than the initial space allocation.
Also speed it up slightly.
|
|
|
|
|
|
|
|
| |
This is the default, but the new flag will allow overriding an alias,
for example. So psql -n -N will put in the double quotes,
and psql -n can be an alias for psql.
Also, add a few braces around a nested single-line conditional construct
to suppress compiler warnings about "an ambiguous else".
|