| Commit message (Collapse) | Author | Age |
... | |
|
|
|
|
| |
- Variables that are out of scope, were not removed all the time.
- Make a varchar NULL set everything to 0 when not using indicators.
|
|
|
|
| |
Markus Schaber
|
|
|
|
|
|
| |
protocol, or encountering other connection failures.
Laurent Sylvain
|
|
|
|
|
| |
after the end of results. You could still call a number of methods
on them like getXXX, updateXXX, and updateRow().
|
|
|
|
|
|
|
|
| |
The existing code didn't correctly allocate data arrays, and it
failed to loop when a stream didn't provide the full amount of
data requested of it.
Reported by Jan de Visser.
|
|
|
|
|
|
| |
instead of FK_TABLE_CAT.
From jeff@bonevich.com.
|
| |
|
|
|
|
|
|
| |
ability to update LOBs is unimplemented. The 1.5 JDK's CachedRowSet
implementation calls this method regardless of whether large objects
are used or not.
|
| |
|
|
|
|
|
|
| |
should be positioned on the previous row.
Reported by Bob Messenger and Chris Pesarchick.
|
|
|
|
|
|
|
| |
relationships. Resulting columns from getImportedExportedKeys should
be FKTABLE_SCHEM and PKTABLE_SCHEM, not _SCHEMA.
Per report from jeff@bonevich.com.
|
| |
|
|
|
|
| |
is actually needed. Backport of Oliver Elphick's recent patch.
|
| |
|
|
|
|
|
|
|
| |
volatile, static, and register keywords before variables,
declared as VARCHAR.
Sergey N. Yatskevich
|
| |
|
| |
|
| |
|
|
|
|
| |
array.
|
|
|
|
| |
pages, even when the macro's result is stored into an unsigned variable.
|
|
|
|
|
|
|
|
|
|
| |
issue in timestamp conversion that we hacked around for so long by
ignoring the seconds field from localtime(). It's simple: you have
to watch out for platform-specific roundoff error when reducing a
possibly-fractional timestamp to integral time_t form. In particular
we should subtract off the already-determined fractional fsec field.
This should be enough to get an exact answer with int64 timestamps;
with float timestamps, throw in a rint() call just to be sure.
|
| |
|
|
|
|
|
|
| |
Fix problem with doing 7.0.X dumps on character varying[] fields.
Christopher Kings-Lynne
|
|
|
|
|
| |
an overlength token. Printout was always garbage and could dump core
entirely :-(. Per report from Martin Pitt.
|
|
|
|
|
|
| |
to ExclusiveLock. This still serializes the operations of this module,
but doesn't conflict with concurrent ANALYZE operations. Per trouble
report from Philip Warner a few weeks ago.
|
| |
|
|
|
|
|
|
|
| |
formatting all years with four digits. Previously 0002-10-30 was
being sent as 2-10-30 which got turned into 2030-02-10.
Per report from oneway_111.
|
|
|
|
|
| |
pqexpbuffer.c. While a client-side failure doesn't seem like a
security issue, it's still a bug.
|
|
|
|
|
|
| |
by Ken Ashcraft's report. I think there is no actual bug here since if
the int32 value does wrap a little bit, palloc will still reject it.
Still it's better that the code be obviously correct.
|
|
|
|
| |
infinite-loop problems if a bogus data length is passed.
|
| |
|
|
|
|
|
| |
Didier Moens. Bug is new in 7.4, and was caused by not updating everyplace
I should've when replacing locParam markers by allParam.
|
| |
|
| |
|
|
|
|
|
|
| |
behavior.
Per report from Declan Lynch.
|
|
|
|
|
| |
by the SQL spec and by our parser. Thanks to Jonathan Scott for finding
this longstanding error.
|
|
|
|
| |
time_t; on some platforms they are not the same width. Per Manfred Koizar.
|
|
|
|
| |
to something incompatible with the -E option.
|
| |
|
|
|
|
|
| |
inspection we fixed only one of the two uses of COPY :-(. Fix the other.
This is already correct in CVS tip, but 7.4.3 could use the patch.
|
|
|
|
| |
and ant 1.6.
|
| |
|
|
|
|
|
|
| |
mappable to Java types, for example cidr.
Per report from Moray Taylor.
|
| |
|
|
|
|
|
|
|
|
| |
are sought first as local FROM columns, then as local SELECT-list aliases,
and finally as outer FROM columns; the former behavior made outer FROM
columns take precedence over aliases. This does not change spec
conformance because SQL99 allows only the first case anyway, and it seems
more useful and self-consistent. Per gripe from Dennis Bjorklund 2004-04-05.
|
| |
|
|
|
|
| |
Per example from Jiang Wei.
|
|
|
|
|
|
|
| |
That particular corner case is not exactly compelling, but given 7.4's
ability to discard redundant join clauses, it is possible for the situation
to arise from queries that are not so obviously silly. Per bug report
of 6-Apr-04.
|
|
|
|
|
| |
equal to the desired restart value (must clear is_called, did not).
Per bug report #1127 from Piotr Konieczny.
|
| |
|