- 26 Nov, 2004 1 commit
-
-
Tom Lane authored
-
- 24 Nov, 2004 6 commits
-
-
Tom Lane authored
8.4.1). This corrects some curious regex bugs, though not the greediness issue I was hoping to find a solution for :-(
-
Tom Lane authored
error conditions during regexp compile, but not during regexp execution; any sort of "can't happen" errors would be treated as no-match instead of being reported as they should be. Noticed while trying to duplicate a reported Tcl bug.
-
Tom Lane authored
to be processed by GUC before InitPostgres, because any required lookup of the encoding conversion function has to be done during InitializeClientEncoding. So, I broke this last week by moving GUC processing to after InitPostgres :-(. What we can do as a compromise is process non-SUSET variables during command line scanning (the same as before), and postpone the processing of only SUSET variables. None of the SUSET variables need to be set before InitPostgres.
-
Tom Lane authored
Per report from Mark Kirkwood.
-
Neil Conway authored
include "\s" in \? output when readline is enabled, but that commit supressed "\s" whether readline was enabled or not.
-
Neil Conway authored
a home-brewed combination of assertions that boiled down to the same thing.
-
- 23 Nov, 2004 6 commits
-
-
Neil Conway authored
has been defined. Previously, pgcrypto would compile but would be unusable.
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Tom Lane authored
data returned from Perl. Consolidate multiple bits of code to convert a Perl hash to a tuple, and drive the conversion off the keys present in the hash rather than the tuple column names, so we detect error if the hash contains keys it shouldn't. (This means keys not in the hash will silently default to NULL, which seems ok to me.) Fix a bunch of reference-count leaks too.
-
- 22 Nov, 2004 5 commits
-
-
Tom Lane authored
covers return value processing, but that was the most broken stuff...
-
Tom Lane authored
Get rid of static variables for SETOF result, don't crash when called from non-FROM context, eliminate dead code, etc.
-
Neil Conway authored
-
PostgreSQL Daemon authored
update us to beta5
-
Tom Lane authored
-
- 21 Nov, 2004 5 commits
-
-
Tom Lane authored
fill factor has been exceeded. We usually run with ffactor == 1, but the way the test was coded, it wouldn't split a bucket until the actual fill factor reached 2.0, because of use of integer division. Change from > to >= so that it will split more aggressively when the table starts to get full.
-
Tom Lane authored
few cycles during transaction exit. A typical session probably wouldn't have as many as half a dozen portals open at once, so the original value of 64 seems far larger than needed.
-
Tom Lane authored
subtransactions quite right either: the ReleaseCurrentSubTransaction call should occur inside the PG_TRY, so that the proper path is taken if an error occurs during subtransaction commit. This assumes that AbortSubTransaction can cope with the state left behind if CommitSubTransaction fails partway through, but we were already requiring that.
-
Tom Lane authored
it's not really broken. Andrew Dunstan
-
Tom Lane authored
operations are now run as subtransactions, so that errors in them can be reported as ordinary Perl or Tcl errors and caught by the normal error handling convention of those languages. Also do some minor code cleanup in pltcl.c: extract a large chunk of duplicated code in pltcl_SPI_execute and pltcl_SPI_execute_plan into a shared subroutine.
-
- 20 Nov, 2004 13 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
the year from a BC date, but failed to make the same fix in date_part(timestamptz).
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
is nothing to do, which is most of the time. This is another simple improvement to cut subtransaction entry/exit overhead.
-
Tom Lane authored
no need for it to be nearly as big as the global hash table, and since it's not in shared memory it can grow if it does need to be bigger. By reducing the size, we speed up hash_seq_search(), which saves a significant fraction of subtransaction entry/exit overhead.
-
Tom Lane authored
rather than longjmp'ing clear out of Perl and thereby leaving Perl in a broken state. Also some minor prettification of error messages. Still need to do something with spi_exec_query() error handling.
-
Tom Lane authored
to the original List; per report from Sebastian BÎck. I think this is the last such bug --- I examined every lcons() call in the backend and the rest seem OK --- but it's nervous-making that we're still finding 'em so many months after the List rewrite went in.
-
Tom Lane authored
the regression test shared libraries.
-
Tom Lane authored
-
Tom Lane authored
collector until the transaction commits. Per recent discussion, this should avoid confusing autovacuum when an updating transaction runs for a long time.
-
Tom Lane authored
postgresql.crt file simply isn't there, too.
-
Tom Lane authored
free operations in client_cert_cb --- openssl will also attempt to free these structures, resulting in core dumps.
-
- 19 Nov, 2004 4 commits
-
-
Tom Lane authored
of rows processed by a SPI query (David Fetter); also some other minor editorial cleanup (Tom Lane).
-
Tom Lane authored
switch syntax when calling ld directly.
-
Tom Lane authored
for the languages even when not installed in a standard directory. pltcl may need this treatment as well, but we don't have the right path conveniently available, so I'll leave it alone as long as there aren't actual reports of trouble.
-
Tom Lane authored
in terms of macro 'rpathdir', as I proposed a few weeks ago. In itself this commit shouldn't change the behavior at all, but it opens the door to using special rpaths for the PL shared libraries, as seems to be needed for plperl in particular.
-