- 10 Jul, 2005 3 commits
-
-
Bruce Momjian authored
- 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
-
Bruce Momjian authored
New hashes: SHA256, SHA384, SHA512. Marko Kreen
-
Bruce Momjian authored
100.000,0. Eugen Nedelcu
-
- 09 Jul, 2005 1 commit
-
-
Tom Lane authored
is a ReturnSetInfo unless you've tested it with IsA.
-
- 08 Jul, 2005 8 commits
-
-
Tom Lane authored
that has no terminating newline. Per report from maps.on at gmx.net.
-
Tom Lane authored
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.
-
Tom Lane authored
Also, back-patch fix into back branches.
-
PostgreSQL Daemon authored
testing activitymail
-
Neil Conway authored
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.
-
Neil Conway authored
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.
-
Tom Lane authored
a minimum requirement is that it not completely break the system meanwhile. Put the test in the right place.
-
Bruce Momjian authored
> * -Prevent dropping user that still owns objects, or auto-drop the objects
-
- 07 Jul, 2005 5 commits
-
-
Tom Lane authored
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.
-
Bruce Momjian authored
< 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.
-
Bruce Momjian authored
> > 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.
-
Bruce Momjian authored
Andrew Dunstan
-
Bruce Momjian authored
Mark Kirkwood
-
- 06 Jul, 2005 12 commits
-
-
Bruce Momjian authored
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
-
Bruce Momjian authored
plperl - the attached small patch remedies that omission. Andrew Dunstan
-
Bruce Momjian authored
-
Bruce Momjian authored
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.
-
Bruce Momjian authored
possible compression. Mark Kirkwood
-
Tom Lane authored
before, but they were out of sync again. Per Kris Jurka.
-
Tom Lane authored
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.
-
Tom Lane authored
-
Tom Lane authored
-
Bruce Momjian authored
Michael Paesold
-
Bruce Momjian authored
> * -Add function to return compressed length of TOAST data values
-
Bruce Momjian authored
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
-
- 05 Jul, 2005 8 commits
-
-
Tom Lane authored
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.)
-
Bruce Momjian authored
-
Tom Lane authored
is used in the toplevel configure. Per Marko Kreen.
-
Bruce Momjian authored
< * Turn off full page writes if fsync is disabled < < If fsync is off, there is no purpose in writing full pages to WAL <
-
Bruce Momjian authored
< 881a881,882 > o Improve xid wraparound detection by recording per-table rather > than per-database
-
Bruce Momjian authored
--------------------------------------------------------------------------- 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
-
Tom Lane authored
-
Bruce Momjian authored
build of zic.
-
- 04 Jul, 2005 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
wrong. __AMD64__ is not defined, __amd64__ is. Christof Petig
-
Bruce Momjian authored
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
-