]> granicus.if.org Git - postgresql/log
postgresql
18 years agoMemSet() must not cast its pointer argument to int32* until after it has
Tom Lane [Mon, 18 Jul 2005 15:53:28 +0000 (15:53 +0000)]
MemSet() must not cast its pointer argument to int32* until after it has
checked that the pointer is actually word-aligned.  Casting a non-aligned
pointer to int32* is technically illegal per the C spec, and some recent
versions of gcc actually generate bad code for the memset() when given
such a pointer.  Per report from Andrew Morrow.

19 years agoMake pg_regress accept a command-line option for the temporary installation's
Tom Lane [Sun, 17 Jul 2005 18:28:45 +0000 (18:28 +0000)]
Make pg_regress accept a command-line option for the temporary installation's
port number, and use a default value for it that is dependent on the
configuration-time DEF_PGPORT.  Should make the world safe for running
parallel 'make check' in different branches.  Back-patch as far as 7.4
so that this actually is useful.

19 years agoFix create_unique_plan() so it doesn't generate useless entries in the
Tom Lane [Fri, 15 Jul 2005 22:02:51 +0000 (22:02 +0000)]
Fix create_unique_plan() so it doesn't generate useless entries in the
output targetlist of the Unique or HashAgg plan.  This code was OK when
written, but subsequent changes to use "physical tlists" where possible
had broken it: given an input subplan that has extra variables added to
avoid a projection step, it would copy those extra variables into the
upper tlist, which is pointless since a projection has to happen anyway.

19 years agoFix SGML spacing.
Bruce Momjian [Fri, 15 Jul 2005 19:02:12 +0000 (19:02 +0000)]
Fix SGML spacing.

19 years agoCheck for out-of-range varoattno in deparse_context_for_subplan.
Tom Lane [Fri, 15 Jul 2005 18:39:59 +0000 (18:39 +0000)]
Check for out-of-range varoattno in deparse_context_for_subplan.
I have seen this case in CVS tip due to new "physical tlist" optimization
for subqueries.  I believe it probably can't happen in existing releases,
but the check is not going to hurt anything, so backpatch to 8.0 just
in case.

19 years agoFix overenthusiastic optimization of 'x IN (SELECT DISTINCT ...)' and related
Tom Lane [Fri, 15 Jul 2005 17:09:26 +0000 (17:09 +0000)]
Fix overenthusiastic optimization of 'x IN (SELECT DISTINCT ...)' and related
cases: we can't just consider whether the subquery's output is unique on its
own terms, we have to check whether the set of output columns we are going to
use will be unique.  Per complaint from Luca Pireddu and test case from
Michael Fuhr.

19 years agoAdjust permissions checking for ALTER OWNER commands: instead of
Tom Lane [Thu, 14 Jul 2005 21:46:30 +0000 (21:46 +0000)]
Adjust permissions checking for ALTER OWNER commands: instead of
requiring superuserness always, allow an owner to reassign ownership
to any role he is a member of, if that role would have the right to
create a similar object.  These three requirements essentially state
that the would-be alterer has enough privilege to DROP the existing
object and then re-CREATE it as the new role; so we might as well
let him do it in one step.  The ALTER TABLESPACE case is a bit
squirrely, but the whole concept of non-superuser tablespace owners
is pretty dubious anyway.  Stephen Frost, code review by Tom Lane.

19 years agoEnable multi-byte thousands_sep and decimal_point for numericsep.
Bruce Momjian [Thu, 14 Jul 2005 21:12:41 +0000 (21:12 +0000)]
Enable multi-byte thousands_sep and decimal_point for numericsep.

19 years agoMake better thousands_sep default based on decimal marker value.
Bruce Momjian [Thu, 14 Jul 2005 15:54:21 +0000 (15:54 +0000)]
Make better thousands_sep default based on decimal marker value.

19 years agoChange numericsep to a boolean, and make it locale-aware.
Bruce Momjian [Thu, 14 Jul 2005 08:42:37 +0000 (08:42 +0000)]
Change numericsep to a boolean, and make it locale-aware.

19 years agoAdd numeric separator support for latex and troff output methods.
Bruce Momjian [Thu, 14 Jul 2005 07:32:01 +0000 (07:32 +0000)]
Add numeric separator support for latex and troff output methods.

19 years agoMark xml2 CREATE FUNCTIONs as IMMUTABLE, and use the "STRICT" syntax
Neil Conway [Thu, 14 Jul 2005 07:12:27 +0000 (07:12 +0000)]
Mark xml2 CREATE FUNCTIONs as IMMUTABLE, and use the "STRICT" syntax
rather than the deprecated "WITH (isStrict)" syntax. Patch from Ilia
Kantor, minor editorializing by Neil Conway.

19 years agobarebones variable name -> tuples_only, for consistency.
Bruce Momjian [Thu, 14 Jul 2005 06:49:58 +0000 (06:49 +0000)]
barebones variable name -> tuples_only, for consistency.

19 years agoFix malloc length for new numeric separator patch.
Bruce Momjian [Thu, 14 Jul 2005 06:46:17 +0000 (06:46 +0000)]
Fix malloc length for new numeric separator patch.

Centralize malloc into function.

19 years agoThis doc patch replaces all inappropriate references to SQL:1999 when it
Neil Conway [Thu, 14 Jul 2005 06:17:36 +0000 (06:17 +0000)]
This doc patch replaces all inappropriate references to SQL:1999 when it
is used as if it were the latest (and/or still valid) SQL standard.
SQL:2003 is used in its place. Patch from Simon Riggs.

19 years agoIntegrate autovacuum functionality into the backend. There's still a
Tom Lane [Thu, 14 Jul 2005 05:13:45 +0000 (05:13 +0000)]
Integrate autovacuum functionality into the backend.  There's still a
few loose ends to be dealt with, but it seems to work.  Alvaro Herrera,
based on the contrib code by Matthew O'Connor.

19 years agoFix a couple of bogus comments, per Alvaro.
Tom Lane [Wed, 13 Jul 2005 22:46:09 +0000 (22:46 +0000)]
Fix a couple of bogus comments, per Alvaro.

19 years agoRemove extraneous space after -L ... it confuses SHLIB_LINK filter -L
Tom Lane [Wed, 13 Jul 2005 17:12:56 +0000 (17:12 +0000)]
Remove extraneous space after -L ... it confuses SHLIB_LINK filter -L
hack.

19 years agoFix unwanted side-effects of recent SHLIB_LINK -L patch on existing
Tom Lane [Wed, 13 Jul 2005 17:00:44 +0000 (17:00 +0000)]
Fix unwanted side-effects of recent SHLIB_LINK -L patch on existing
hacking of SHLIB_LINK for HPUX.

19 years agoFix #elif spacing too.
Bruce Momjian [Wed, 13 Jul 2005 15:59:32 +0000 (15:59 +0000)]
Fix #elif spacing too.

19 years agoFix libpq memory leak during PQreset() --- closePGconn() was not
Tom Lane [Wed, 13 Jul 2005 15:25:55 +0000 (15:25 +0000)]
Fix libpq memory leak during PQreset() --- closePGconn() was not
freeing all transient state of the PGconn object.

19 years agoFix pgindent to not have blank line before #else in variable definition
Bruce Momjian [Wed, 13 Jul 2005 04:44:42 +0000 (04:44 +0000)]
Fix pgindent to not have blank line before #else in variable definition
section of a function.

19 years agoAdd backslashes to parentheses in awk regex because if not, they are
Bruce Momjian [Wed, 13 Jul 2005 04:00:28 +0000 (04:00 +0000)]
Add backslashes to parentheses in awk regex because if not, they are
treated as regex groups.

19 years agoMove -L flag around for shared builds:
Bruce Momjian [Wed, 13 Jul 2005 02:11:57 +0000 (02:11 +0000)]
Move -L flag around for shared builds:

I wrote:
> So either we code up some intelligence to put the "C" in the right
> position or we have to pass down "A B" and "D" separately from the
> main makefile.

The following patch might just do the former.  Please try it out.

Peter E.

19 years agoDocumentation for some new PL/Perl features. Patch from David Fetter,
Neil Conway [Wed, 13 Jul 2005 02:10:42 +0000 (02:10 +0000)]
Documentation for some new PL/Perl features. Patch from David Fetter,
various editorialization from Neil Conway.

19 years agoHack around the discrepancy between default library search paths for
Tom Lane [Tue, 12 Jul 2005 23:06:48 +0000 (23:06 +0000)]
Hack around the discrepancy between default library search paths for
gcc and for HP's ld on HPUX.  There may be better ways to do this,
but this seems to work for me...

19 years agoFix plperl crash with list value return for an array result type.
Tom Lane [Tue, 12 Jul 2005 20:35:42 +0000 (20:35 +0000)]
Fix plperl crash with list value return for an array result type.
Reported by Michael Fuhr, fixed by Andrew Dunstan.

19 years agoMore pgcrypto fixes: handle long messages correctly, suppress
Tom Lane [Tue, 12 Jul 2005 20:27:45 +0000 (20:27 +0000)]
More pgcrypto fixes: handle long messages correctly, suppress
compiler warnings.  Marko Kreen and Kris Jurka.

19 years agoImprove comments for AdjustIntervalForTypmod.
Bruce Momjian [Tue, 12 Jul 2005 16:05:12 +0000 (16:05 +0000)]
Improve comments for AdjustIntervalForTypmod.

Blank line adjustments.

19 years agoChange 5e0 to 5.0, for consistency.
Bruce Momjian [Tue, 12 Jul 2005 15:17:44 +0000 (15:17 +0000)]
Change 5e0 to 5.0, for consistency.

19 years agoFix plperl to do recursion safely, and fix a problem with array results.
Tom Lane [Tue, 12 Jul 2005 01:16:22 +0000 (01:16 +0000)]
Fix plperl to do recursion safely, and fix a problem with array results.
Add suitable regression tests.  Andrew Dunstan

19 years agoFurther tweaking of Win32-specific random code. Marko Kreen
Tom Lane [Mon, 11 Jul 2005 19:06:46 +0000 (19:06 +0000)]
Further tweaking of Win32-specific random code.  Marko Kreen

19 years agoI forgot to update win32 code when doing a renaming in random.c.
Tom Lane [Mon, 11 Jul 2005 17:00:03 +0000 (17:00 +0000)]
I forgot to update win32 code when doing a renaming in random.c.
Marko Kreen

19 years agoAvoid bzero/bxopy in favor of more standard library routines.
Tom Lane [Mon, 11 Jul 2005 15:40:38 +0000 (15:40 +0000)]
Avoid bzero/bxopy in favor of more standard library routines.
Marko Kreen

19 years agoMore pgcrypto fixes: avoid bogus alignment assumptions in sha2,
Tom Lane [Mon, 11 Jul 2005 15:07:59 +0000 (15:07 +0000)]
More pgcrypto fixes: avoid bogus alignment assumptions in sha2,
be more wary about having a value for BYTE_ORDER, clean up randomly-
chosen ways of including Postgres core headers.
Marko Kreen and Tom Lane

19 years agoAdd support for AES cipher with older OpenSSL libraries.
Tom Lane [Mon, 11 Jul 2005 14:38:05 +0000 (14:38 +0000)]
Add support for AES cipher with older OpenSSL libraries.
Marko Kreen

19 years agoMissed adding extra argument to array_recv in a couple of places
Tom Lane [Sun, 10 Jul 2005 21:36:21 +0000 (21:36 +0000)]
Missed adding extra argument to array_recv in a couple of places
(harmless, actually, but let's be tidy).

19 years agoChange typreceive function API so that receive functions get the same
Tom Lane [Sun, 10 Jul 2005 21:14:00 +0000 (21:14 +0000)]
Change typreceive function API so that receive functions get the same
optional arguments as text input functions, ie, typioparam OID and
atttypmod.  Make all the datatypes that use typmod enforce it the same
way in typreceive as they do in typinput.  This fixes a problem with
failure to enforce length restrictions during COPY FROM BINARY.

19 years ago> One more failure:
Bruce Momjian [Sun, 10 Jul 2005 18:32:55 +0000 (18:32 +0000)]
> One more failure:
>
> I think this is because we don't have -lz in SHLIB_LINK.
> Following patch fixes it.

Marko Kreen

19 years agoAdd extra argument for new pg_regexec API.
Bruce Momjian [Sun, 10 Jul 2005 18:31:59 +0000 (18:31 +0000)]
Add extra argument for new pg_regexec API.

19 years agoSuppress compile warning.
Tom Lane [Sun, 10 Jul 2005 17:22:54 +0000 (17:22 +0000)]
Suppress compile warning.

19 years agoRename xmalloc to pg_malloc for consistency with psql usage.
Bruce Momjian [Sun, 10 Jul 2005 16:13:13 +0000 (16:13 +0000)]
Rename xmalloc to pg_malloc for consistency with psql usage.

Add missing plperl include.

19 years agoReverse pg_malloc patch because psql/print.c is used in scripts files
Bruce Momjian [Sun, 10 Jul 2005 15:53:42 +0000 (15:53 +0000)]
Reverse pg_malloc patch because psql/print.c is used in scripts files
that don't have pg_malloc.

19 years agoUse failure-safe pg_malloc consistently in psql/print.c.
Bruce Momjian [Sun, 10 Jul 2005 15:48:14 +0000 (15:48 +0000)]
Use failure-safe pg_malloc consistently in psql/print.c.

19 years agoRemove #include <openssl/bn.h> as compile fix.
Bruce Momjian [Sun, 10 Jul 2005 15:37:03 +0000 (15:37 +0000)]
Remove #include <openssl/bn.h> as compile fix.

Marko Kreen

19 years agoFollowing up a previous thought I had, yesterday I realised how to
Bruce Momjian [Sun, 10 Jul 2005 15:32:47 +0000 (15:32 +0000)]
Following up a previous thought I had, yesterday I realised how to
return arays nicely without having to make the plperl programmer aware
of anything. The attached patch allows plperl to return an arrayref
where the function returns an array type. It silently calls a perl
function to stringify the array before passing it to the pg array
parser. Non-array returns are handled as before (i.e. passed through
this process) so it is backwards compatible. I will presently submit
regression tests and docs.

example:

andrew=# create or replace function blah() returns text[][] language
plperl as $$ return [['a"b','c,d'],['e\\f','g']]; $$;
CREATE FUNCTION
andrew=# select blah();
            blah
-----------------------------
 {{"a\"b","c,d"},{"e\\f",g}}

This would complete half of the TODO item:

  . Pass arrays natively instead of as text between plperl and postgres

(The other half is translating pg array arguments to perl arrays - that
will have to wait for 8.1).

Some of this patch is adapted from a previously submitted patch from
Sergej Sergeev. Both he and Abhijit Menon-Sen have looked it over
briefly and tentatively said it looks ok.

Andrew Dunstan

19 years agoThe attached patch implements spi_query() and spi_fetchrow() functions
Bruce Momjian [Sun, 10 Jul 2005 15:19:43 +0000 (15:19 +0000)]
The attached patch implements spi_query() and spi_fetchrow() functions
for PL/Perl, to avoid loading the entire result set into memory as the
existing spi_exec_query() function does.

Here's how one might use the new functions:

    $x = spi_query("select ...");
    while (defined ($y = spi_fetchrow($x))) {
        ...
        return_next(...);
    }

The changes do not affect the spi_exec_query() interface in any way.

Abhijit Menon-Sen

19 years agoAdd --encoding to pg_dump.
Bruce Momjian [Sun, 10 Jul 2005 15:08:52 +0000 (15:08 +0000)]
Add --encoding to pg_dump.

The Problem:  Occassionally a DBA needs to dump a database to a new
encoding.   In instances where the current encoding, (or lack of an
encoding, like SQL_ASCII) is poorly supported on the target  database
server, it can be useful to dump into a particular  encoding.  But,
currently the only way to set the encoding of  a pg_dump file is to
change  client_encoding in postgresql.conf and restart postmaster.
This is more  than a little awkward for production systems.

Magnus Hagander

19 years agoThis patch implements putting language handlers for the optional PLs
Bruce Momjian [Sun, 10 Jul 2005 14:26:30 +0000 (14:26 +0000)]
This patch implements putting language handlers for the optional PLs
into pg_catalog rather than public, and supports dumping languages whose
handlers are found there. This will make it easier to drop the public
schema if desired.

Unlike the previous patch, the comments have been updated and I have
reformatted some code to meet Alvarro's request to stick to 80 cols. (I
actually aghree with this - it makes printing the code much nicer).

I think I did the right thing w.r.t versions earlier than 7.3, but I
have no real way of checking, so that should be checked by someone with
more/older knowledge than me ;-)

Andrew Dunstan

19 years agoAs Kris Jurka found out, pgcrypto does not work with
Bruce Momjian [Sun, 10 Jul 2005 13:54:34 +0000 (13:54 +0000)]
As Kris Jurka found out, pgcrypto does not work with
OpenSSL 0.9.6x.  The DES functions use the older 'des_'
API, but the newer 3DES functions use the 0.9.7x-only
'DES_' API.

I think I just used /usr/include/openssl/des.h for reference
when implementing them, and had upgraded OpenSSL in the
meantime.

Following patch converts DES also to newer API and provides
compatibility functions for OpenSSL < 0.9.7.

I chose this route because:

- openssl.c uses few DES functions.
- compatibility for old 'des_' API is going away at some point
  of time from OpenSSL.
- as seen from macros, new API is saner
- Thus pgcrypto supports any OpenSSL version from 0.9.5 to 1.0

Tested with OpenSSL 0.9.6c and 0.9.7e.

Marko Kreen

19 years agoAdd missing pgcrypto files from previous commit.
Bruce Momjian [Sun, 10 Jul 2005 13:46:29 +0000 (13:46 +0000)]
Add missing pgcrypto files from previous commit.

19 years agoUpdate.
Bruce Momjian [Sun, 10 Jul 2005 05:06:42 +0000 (05:06 +0000)]
Update.

<    computations should adjust based on the time zone rules, e.g.
<    adding 24 hours to a timestamp would yield a different result from
<    adding one day.
<
>    computations should adjust based on the time zone rules.

19 years agoThis patch addresses the problem mentioned in the "process crash
Bruce Momjian [Sun, 10 Jul 2005 04:56:55 +0000 (04:56 +0000)]
This patch addresses the problem mentioned in the "process crash
when a plpython function returns unicode" thread:

http://archives.postgresql.org/pgsql-bugs/2005-06/msg00105.php

In several places PL/Python was calling PyObject_Str() and then
PyString_AsString() without checking if the former had returned
NULL to indicate an error.  PyString_AsString() doesn't expect a
NULL argument, so passing one causes a segmentation fault.  This
patch adds checks for NULL and raises errors via PLy_elog(), which
prints details of the underlying Python exception.  The patch also
adds regression tests for these checks.  All tests pass on my
Solaris 9 box running HEAD and Python 2.4.1.

In one place the patch doesn't call PLy_elog() because that could
cause infinite recursion; see the comment I added.  I'm not sure
how to test that particular case or whether it's even possible to
get an error there: the value that the code should check is the
Python exception type, so I wonder if a NULL value "shouldn't
happen."  This patch converts NULL to "Unknown Exception" but I
wonder if an Assert() would be appropriate.

The patch is against HEAD but the same changes should be applied
to earlier versions because they have the same problem.  The patch
might not apply cleanly against earlier versions -- will the committer
take care of little differences or should I submit different versions
of the patch?

Michael Fuhr

19 years agoI made the patch that implements regexp_replace again.
Bruce Momjian [Sun, 10 Jul 2005 04:54:33 +0000 (04:54 +0000)]
I made the patch that implements regexp_replace again.
The specification of this function is as follows.

regexp_replace(source text, pattern text, replacement text, [flags
text])
returns text

Replace string that matches to regular expression in source text to
replacement text.

 - pattern is regular expression pattern.
 - replacement is replace string that can use '\1'-'\9', and '\&'.
    '\1'-'\9': back reference to the n'th subexpression.
    '\&'     : entire matched string.
 - flags can use the following values:
    g: global (replace all)
    i: ignore case
    When the flags is not specified, case sensitive, replace the first
    instance only.

Atsushi Ogawa

19 years agoMajor pgcrypto changes:
Bruce Momjian [Sun, 10 Jul 2005 03:57:55 +0000 (03:57 +0000)]
Major pgcrypto changes:

of password-based encryption from RFC2440 (OpenPGP).

The goal of this code is to be more featureful encryption solution
than current encrypt(), which only functionality is running cipher
over data.

Compared to encrypt(), pgp_encrypt() does following:

* It uses the equvialent of random Inital Vector to get cipher
  into random state before it processes user data
* Stores SHA-1 of the data into result so any modification
  will be detected.
* Remembers if data was text or binary - thus it can decrypt
  to/from text data.  This was a major nuisance for encrypt().
* Stores info about used algorithms with result, so user needs
  not remember them - more user friendly!
* Uses String2Key algorithms (similar to crypt()) with random salt
  to generate full-length binary key to be used for encrypting.
* Uses standard format for data - you can feed it to GnuPG, if needed.

Optional features (off by default):

* Can use separate session key - user data will be encrypted
  with totally random key, which will be encrypted with S2K
  generated key and attached to result.
* Data compression with zlib.
* Can convert between CRLF<->LF line-endings - to get fully
  RFC2440-compliant behaviour.  This is off by default as
  pgcrypto does not know the line-endings of user data.

Interface is simple:

    pgp_encrypt(data text, key text) returns bytea
    pgp_decrypt(data text, key text) returns text
    pgp_encrypt_bytea(data bytea, key text) returns bytea
    pgp_decrypt_bytea(data bytea, key text) returns bytea

To change parameters (cipher, compression, mdc):

    pgp_encrypt(data text, key text, parms text) returns bytea
    pgp_decrypt(data text, key text, parms text) returns text
    pgp_encrypt_bytea(data bytea, key text, parms text) returns bytea
    pgp_decrypt_bytea(data bytea, key text, parms text) returns bytea

Parameter names I lifted from gpg:

   pgp_encrypt('message', 'key', 'compress-algo=1,cipher-algo=aes256')

For text data, pgp_encrypt simply encrypts the PostgreSQL internal data.

This maps to RFC2440 data type 't' - 'extenally specified encoding'.
But this may cause problems if data is dumped and reloaded into database
which as different internal encoding.  My next goal is to implement data
type 'u' - which means data is in UTF-8 encoding by converting internal
encoding to UTF-8 and back.  And there wont be any compatibility
problems with current code, I think its ok to submit this without UTF-8
encoding by converting internal encoding to UTF-8 and back.  And there
wont be any compatibility problems with current code, I think its ok to
submit this without UTF-8 support.

Here is v4 of PGP encrypt.  This depends on previously sent
Fortuna-patch, as it uses the px_add_entropy function.

- New function: pgp_key_id() for finding key id's.
- Add SHA1 of user data and key into RNG pools.  We need to get
  randomness from somewhere, and it is in user best interests
  to contribute.
- Regenerate pgp-armor test for SQL_ASCII database.
- Cleanup the key handling so that the pubkey support is less
  hackish.

Marko Kreen

19 years ago- Add Fortuna PRNG to pgcrypto.
Bruce Momjian [Sun, 10 Jul 2005 03:55:28 +0000 (03:55 +0000)]
- Add Fortuna PRNG to pgcrypto.
- Move openssl random provider to openssl.c and builtin provider
  to internal.c
- Make px_random_bytes use Fortuna, instead of giving error.
- Retarget random.c to aquiring system randomness, for initial seeding
  of Fortuna.  There is ATM 2 functions for Windows,
  reader from /dev/urandom and the regular time()/getpid() silliness.

Marko Kreen

19 years agoThis patch adds implementation of SHA2 to pgcrypto.
Bruce Momjian [Sun, 10 Jul 2005 03:52:56 +0000 (03:52 +0000)]
This patch adds implementation of SHA2 to pgcrypto.
New hashes: SHA256, SHA384, SHA512.

Marko Kreen

19 years agoAdd psql \pset numericsep to allow output numbers like 100,000.0 or
Bruce Momjian [Sun, 10 Jul 2005 03:46:13 +0000 (03:46 +0000)]
Add psql \pset numericsep to allow output numbers like 100,000.0 or
100.000,0.

Eugen Nedelcu

19 years agoFix inadequate error checking: you can't assume that fcinfo->resultinfo
Tom Lane [Sat, 9 Jul 2005 01:53:22 +0000 (01:53 +0000)]
Fix inadequate error checking: you can't assume that fcinfo->resultinfo
is a ReturnSetInfo unless you've tested it with IsA.

19 years agoFix config file lexer to not barf if postgresql.conf ends with a comment
Tom Lane [Fri, 8 Jul 2005 18:41:40 +0000 (18:41 +0000)]
Fix config file lexer to not barf if postgresql.conf ends with a comment
that has no terminating newline.  Per report from maps.on at gmx.net.

19 years agoTry connecting to both postgres and template1 databases to do the initial
Tom Lane [Fri, 8 Jul 2005 16:51:30 +0000 (16:51 +0000)]
Try connecting to both postgres and template1 databases to do the initial
inspection of shared catalogs.  This allows pg_dumpall to continue to
work with pre-8.1 servers that likely won't have a database named postgres.
Also, suppress output of SYSID options for users and groups, since server
no longer does anything with these except emit a rude message.
There is much more to be done to update pg_dumpall for the roles feature,
but this at least makes it usable again.  Per gripe from Chris K-L.

19 years agoMake libpq_gettext save and restore errno in a Windows-compatible way.
Tom Lane [Fri, 8 Jul 2005 15:24:41 +0000 (15:24 +0000)]
Make libpq_gettext save and restore errno in a Windows-compatible way.
Also, back-patch fix into back branches.

19 years agotesting activitymail
PostgreSQL Daemon [Fri, 8 Jul 2005 15:13:09 +0000 (15:13 +0000)]
testing activitymail

19 years agoThis patch updates the DDL for contrib/pgcrypto to create all
Neil Conway [Fri, 8 Jul 2005 04:27:49 +0000 (04:27 +0000)]
This patch updates the DDL for contrib/pgcrypto to create all
functions as STRICT, and all functions except gen_salt() as IMMUTABLE.
gen_salt() is VOLATILE.

Although the functions are now STRICT, I left their PG_ARGISNULL()
checks in place as a protective measure for users who install the
new code but use old (non-STRICT) catalog entries (e.g., restored
from a dump).  Per recent discussion in pgsql-hackers.

Patch from Michael Fuhr.

19 years agoRemove some dead code for handling XLOG_DBASE_CREATE_OLD and
Neil Conway [Fri, 8 Jul 2005 04:12:27 +0000 (04:12 +0000)]
Remove some dead code for handling XLOG_DBASE_CREATE_OLD and
XLOG_DBASE_DROP_OLD WAL records -- these records are no longer created in
current sources. Adjust numbering of XLOG_DBASE_CREATE and XLOG_DBASE_DROP
and bump the catversion. Patch from Gavin Sherry, adjusted by Neil Conway.

19 years agoEven though I'd like to see full_page_writes go away before 8.1,
Tom Lane [Fri, 8 Jul 2005 04:07:26 +0000 (04:07 +0000)]
Even though I'd like to see full_page_writes go away before 8.1,
a minimum requirement is that it not completely break the system
meanwhile.  Put the test in the right place.

19 years agoDone:
Bruce Momjian [Fri, 8 Jul 2005 02:44:37 +0000 (02:44 +0000)]
Done:

> * -Prevent dropping user that still owns objects, or auto-drop the objects

19 years agoTrack dependencies on shared objects (which is to say, roles; we already
Tom Lane [Thu, 7 Jul 2005 20:40:02 +0000 (20:40 +0000)]
Track dependencies on shared objects (which is to say, roles; we already
have adequate mechanisms for tracking the contents of databases and
tablespaces).  This solves the longstanding problem that you can drop a
user who still owns objects and/or has access permissions.
Alvaro Herrera, with some kibitzing from Tom Lane.

19 years agoUpdate:
Bruce Momjian [Thu, 7 Jul 2005 16:02:06 +0000 (16:02 +0000)]
Update:

<     writer.
>     writer.  It might cause problems for applying WAL on recovery
>     into a partially-written page, but later the full page will be
>     replaced from WAL.

19 years agoUpdate:
Bruce Momjian [Thu, 7 Jul 2005 15:18:26 +0000 (15:18 +0000)]
Update:

>
>  o  -Add ability to turn off full page writes
>  o  When off, write CRC to WAL and check file system blocks
>     on recovery
>  o  Write full pages during file system write and not when
>     the page is modified in the buffer cache
>
>     This allows most full page writes to happen in the background
>     writer.

19 years agoFix plperl expected output.
Bruce Momjian [Thu, 7 Jul 2005 04:41:01 +0000 (04:41 +0000)]
Fix plperl expected output.

Andrew Dunstan

19 years agopg_column_size() cleanup for messages and code cleanup.
Bruce Momjian [Thu, 7 Jul 2005 04:36:08 +0000 (04:36 +0000)]
pg_column_size() cleanup for messages and code cleanup.

Mark Kirkwood

19 years agoCurrently, nonfatal warnings are not trapped (as they should be) by
Bruce Momjian [Wed, 6 Jul 2005 22:44:49 +0000 (22:44 +0000)]
Currently, nonfatal warnings are not trapped (as they should be) by
plperl - the attached small patch remedies that omission, and adds a
small regression test for error and warning output - the new regression
input and expected output are in separate attached files.

Andrew Dunstan

19 years agoCurrently, nonfatal warnings are not trapped (as they should be) by
Bruce Momjian [Wed, 6 Jul 2005 22:33:39 +0000 (22:33 +0000)]
Currently, nonfatal warnings are not trapped (as they should be) by
plperl - the attached small patch remedies that omission.

Andrew Dunstan

19 years agoComplete zic patch backout by removing NO_PGPORT workaround.
Bruce Momjian [Wed, 6 Jul 2005 21:40:09 +0000 (21:40 +0000)]
Complete zic patch backout by removing NO_PGPORT workaround.

19 years agoReverse out because the lack of using pgport in timezone/ is causing
Bruce Momjian [Wed, 6 Jul 2005 21:04:14 +0000 (21:04 +0000)]
Reverse out because the lack of using pgport in timezone/ is causing
problems:

---------------------------------------------------------------------------

Support cross compilation by compiling "zic" with a native compiler.
This relies on the output of zic being platform independent, but that is
currently the case.

19 years agoAdd pg_column_size() to return storage size of a column, including
Bruce Momjian [Wed, 6 Jul 2005 19:02:54 +0000 (19:02 +0000)]
Add pg_column_size() to return storage size of a column, including
possible compression.

Mark Kirkwood

19 years agoSync dlopen error handling for the *BSDs ... seems to me I've done this
Tom Lane [Wed, 6 Jul 2005 16:55:58 +0000 (16:55 +0000)]
Sync dlopen error handling for the *BSDs ... seems to me I've done this
before, but they were out of sync again.  Per Kris Jurka.

19 years agoAdd a check for trigger function with declared arguments. This path
Tom Lane [Wed, 6 Jul 2005 16:42:10 +0000 (16:42 +0000)]
Add a check for trigger function with declared arguments.  This path
could not be reached before, but now that there is a plpgsql validator
function, it can be.  Check is needed to prevent core dump reported by
Satoshi Nagayasu.  Besides, this gives a more specific and useful
error message for a fairly common novice error.

19 years agoSave and restore errno across bindtextdomain call, per discussion.
Tom Lane [Wed, 6 Jul 2005 16:25:59 +0000 (16:25 +0000)]
Save and restore errno across bindtextdomain call, per discussion.

19 years agoFix incorrect PG_CPPFLAGS initialization, per Marko.
Tom Lane [Wed, 6 Jul 2005 16:14:42 +0000 (16:14 +0000)]
Fix incorrect PG_CPPFLAGS initialization, per Marko.

19 years agoUpdate description of GUC full_page_writes.
Bruce Momjian [Wed, 6 Jul 2005 14:45:12 +0000 (14:45 +0000)]
Update description of GUC full_page_writes.

Michael Paesold

19 years agoDone:
Bruce Momjian [Wed, 6 Jul 2005 03:40:15 +0000 (03:40 +0000)]
Done:

> * -Add function to return compressed length of TOAST data values

19 years agoAttached is a patch that enhances the "\h" capability in psql. I often
Bruce Momjian [Wed, 6 Jul 2005 03:14:48 +0000 (03:14 +0000)]
Attached is a patch that enhances the "\h" capability in psql. I often
find myself typing a command and then wanting to get the syntax for it.
So I do a ctrl-a and add a \h: but psql does not recognize the command,
because I have stuff attached to it (e.g. "alter table foobar"), so I
have to scroll over and delete everything except the name of the command
itself. This patch gives \h three chances to match: if nothing matches
the complete string (current behavior), it tries to match the first two
words (e.g. "ALTER TABLE"). If that fails, it tries to match the first
word (e.g. "DELETE").

Greg Sabino Mullane

19 years agoDept of second thoughts: don't expose rijndael.tbl: rijndael.c dependency
Tom Lane [Tue, 5 Jul 2005 23:18:44 +0000 (23:18 +0000)]
Dept of second thoughts: don't expose rijndael.tbl: rijndael.c dependency
to make.  We ship the table file in the tarball and so this dependency
just opens file timestamp skew problems without doing anything useful.
(Not that it should hurt, either ... except for cross-compile builds.)

19 years agoAdd GUC full_page_writes to control writing full pages to WAL.
Bruce Momjian [Tue, 5 Jul 2005 23:18:10 +0000 (23:18 +0000)]
Add GUC full_page_writes to control writing full pages to WAL.

19 years agoFix contrib/pgcrypto to autoconfigure for OpenSSL when --with-openssl
Tom Lane [Tue, 5 Jul 2005 23:13:57 +0000 (23:13 +0000)]
Fix contrib/pgcrypto to autoconfigure for OpenSSL when --with-openssl
is used in the toplevel configure.  Per Marko Kreen.

19 years agoRemove, now have GUC:
Bruce Momjian [Tue, 5 Jul 2005 22:59:36 +0000 (22:59 +0000)]
Remove, now have GUC:

< * Turn off full page writes if fsync is disabled
<
<   If fsync is off, there is no purpose in writing full pages to WAL
<

19 years agoAdd:
Bruce Momjian [Tue, 5 Jul 2005 19:37:54 +0000 (19:37 +0000)]
Add:
<
881a881,882
>  o Improve xid wraparound detection by recording per-table rather
>    than per-database

19 years agoBack out patch. This should be done like other server-side languages.
Bruce Momjian [Tue, 5 Jul 2005 18:15:51 +0000 (18:15 +0000)]
Back out patch.  This should be done like other server-side languages.

---------------------------------------------------------------------------

This patch allows the PL/Python module to do (SRF) functions.

The patch was taken from the CVS version.

I have modified the plpython.c file and have added a test sql script for
testing the functionality. It was actually the script that was in the
8.0.3 version but have since been removed.

In order to signal the end of a set, the called python function must
simply return plpy.EndOfSet and the set would be returned.

Gerrit van Dyk

19 years agoFix initialization bug in pgcrypto openssl code. Marko Kreen
Tom Lane [Tue, 5 Jul 2005 18:15:36 +0000 (18:15 +0000)]
Fix initialization bug in pgcrypto openssl code. Marko Kreen

19 years agoAdd NO_PGPORT defines to fix win32/cygwin builds for new target platform
Bruce Momjian [Tue, 5 Jul 2005 17:24:30 +0000 (17:24 +0000)]
Add NO_PGPORT defines to fix win32/cygwin builds for new target platform
build of zic.

19 years agoRestructure zic #define fprintf checks to use a NO_PGPORT macro instead.
Bruce Momjian [Mon, 4 Jul 2005 19:54:51 +0000 (19:54 +0000)]
Restructure zic #define fprintf checks to use a NO_PGPORT macro instead.

19 years agoI have to admit that I got the case of the preprocessor symbol on amd64
Bruce Momjian [Mon, 4 Jul 2005 19:05:45 +0000 (19:05 +0000)]
I have to admit that I got the case of the preprocessor symbol on amd64
wrong. __AMD64__ is not defined, __amd64__ is.

Christof Petig

19 years agoThis patch allows the PL/Python module to do (SRF) functions.
Bruce Momjian [Mon, 4 Jul 2005 19:03:30 +0000 (19:03 +0000)]
This patch allows the PL/Python module to do (SRF) functions.

The patch was taken from the CVS version.

I have modified the plpython.c file and have added a test sql script for
testing the functionality. It was actually the script that was in the
8.0.3 version but have since been removed.

In order to signal the end of a set, the called python function must
simply return plpy.EndOfSet and the set would be returned.

Gerrit van Dyk

19 years agoI made the patch that improved the performance of replace_text().
Bruce Momjian [Mon, 4 Jul 2005 18:56:44 +0000 (18:56 +0000)]
I made the patch that improved the performance of replace_text().
The content of the patch is as follows:

(1)Create shortcut when subtext was not found.

(2)Stop using LEFT and RIGHT macro.
In LEFT and RIGHT macro, TEXTPOS is executed by the same content as
execution immediately before. The execution frequency of TEXTPOS can be
reduced by using text_substring instead of LEFT and RIGHT macro.

(3)Add appendStringInfoText, and use it instead of
appendStringInfoString.
There is an overhead of PG_TEXT_GET_STR when appendStringInfoString is
executed by text type. This can be reduced by appendStringInfoText.

(4)Reduce execution of TEXTDUP.

The effect of the patch that I measured is as follows:

- The Data for test was created by 'pgbench -i'.

- Test SQL:
 select replace(aid, '9', 'A') from accounts;

- Test results: Linux(CPU: Pentium III, Compiler option: -O2)
 original: 1.515s
 patched:  1.250s

Atsushi Ogawa

19 years agoFix compile if zic because it now doesn't use libpgport.
Bruce Momjian [Mon, 4 Jul 2005 18:21:40 +0000 (18:21 +0000)]
Fix compile if zic because it now doesn't use libpgport.

19 years agoMore TODO list section restructuring.
Bruce Momjian [Mon, 4 Jul 2005 17:43:42 +0000 (17:43 +0000)]
More TODO list section restructuring.

19 years agoRestructure TODO sections.
Bruce Momjian [Mon, 4 Jul 2005 17:00:32 +0000 (17:00 +0000)]
Restructure TODO sections.

19 years agoFix date_trunct for December dates that are in the next year, e.g.:
Bruce Momjian [Mon, 4 Jul 2005 14:38:31 +0000 (14:38 +0000)]
Fix date_trunct for December dates that are in the next year, e.g.:

        SELECT date_trunc('week', '2002-12-31'::date);

Backpatch to 8.0.X.

Per report from Nick Johnson.