OSDN Git Service

pg-rex/syncrep.git
21 years agoFix merge failures for anonymous-type patch. From Joe Conway.
Tom Lane [Sun, 4 Aug 2002 23:49:59 +0000 (23:49 +0000)]
Fix merge failures for anonymous-type patch.  From Joe Conway.

21 years agoFix broken pg_backend_pid reference, per Joe Conway.
Tom Lane [Sun, 4 Aug 2002 23:46:38 +0000 (23:46 +0000)]
Fix broken pg_backend_pid reference, per Joe Conway.

21 years agoAnother backend_pid rename.
Bruce Momjian [Sun, 4 Aug 2002 20:01:33 +0000 (20:01 +0000)]
Another backend_pid rename.

21 years agoFix compile failures for FRS composite tyhpe patch until Joe can fix it.
Bruce Momjian [Sun, 4 Aug 2002 20:00:15 +0000 (20:00 +0000)]
Fix compile failures for FRS composite tyhpe patch until Joe can fix it.

21 years agoRename backend_pid to pg_backend_pid, move docs to monitoring section.
Bruce Momjian [Sun, 4 Aug 2002 19:51:30 +0000 (19:51 +0000)]
Rename backend_pid to pg_backend_pid, move docs to monitoring section.

21 years agoAttached are two patches to implement and document anonymous composite
Bruce Momjian [Sun, 4 Aug 2002 19:48:11 +0000 (19:48 +0000)]
Attached are two patches to implement and document anonymous composite
types for Table Functions, as previously proposed on HACKERS. Here is a
brief explanation:

1. Creates a new pg_type typtype: 'p' for pseudo type (currently either
     'b' for base or 'c' for catalog, i.e. a class).

2. Creates new builtin type of typtype='p' named RECORD. This is the
     first of potentially several pseudo types.

3. Modify FROM clause grammer to accept:
     SELECT * FROM my_func() AS m(colname1 type1, colname2 type1, ...)
     where m is the table alias, colname1, etc are the column names, and
     type1, etc are the column types.

4. When typtype == 'p' and the function return type is RECORD, a list
     of column defs is required, and when typtype != 'p', it is
disallowed.

5. A check was added to ensure that the tupdesc provide via the parser
     and the actual return tupdesc match in number and type of
attributes.

When creating a function you can do:
     CREATE FUNCTION foo(text) RETURNS setof RECORD ...

When using it you can do:
     SELECT * from foo(sqlstmt) AS (f1 int, f2 text, f3 timestamp)
       or
     SELECT * from foo(sqlstmt) AS f(f1 int, f2 text, f3 timestamp)
       or
     SELECT * from foo(sqlstmt) f(f1 int, f2 text, f3 timestamp)

Included in the patches are adjustments to the regression test sql and
expected files, and documentation.

p.s.
     This potentially solves (or at least improves) the issue of builtin
     Table Functions. They can be bootstrapped as returning RECORD, and
     we can wrap system views around them with properly specified column
     defs. For example:

     CREATE VIEW pg_settings AS
       SELECT s.name, s.setting
       FROM show_all_settings()AS s(name text, setting text);

     Then we can also add the UPDATE RULE that I previously posted to
     pg_settings, and have pg_settings act like a virtual table, allowing
     settings to be queried and set.

Joe Conway

21 years agoFix obsolete comment.
Tom Lane [Sun, 4 Aug 2002 18:12:15 +0000 (18:12 +0000)]
Fix obsolete comment.

21 years agoMinor clarification or fix of typos.
Thomas G. Lockhart [Sun, 4 Aug 2002 06:54:10 +0000 (06:54 +0000)]
Minor clarification or fix of typos.

21 years agoImplement WAL log location control using "-X" or PGXLOG.
Thomas G. Lockhart [Sun, 4 Aug 2002 06:53:10 +0000 (06:53 +0000)]
Implement WAL log location control using "-X" or PGXLOG.

21 years agoImplement IS OF and IS NOT OF type predicate.
Thomas G. Lockhart [Sun, 4 Aug 2002 06:51:23 +0000 (06:51 +0000)]
Implement IS OF and IS NOT OF type predicate.
 Can now do queries of the form: SELECT value IS OF (integer, float8);
Define macros for handling typmod manipulation for date/time types.
 Should be more robust than all of that brute-force inline code.
Rename macros for masking and typmod manipulation to put TIMESTAMP_
 or INTERVAL_ in front of the macro name, to reduce the possibility
 of name space collisions.
Allow bit string constants without fully-specified length declaration.
Try implementing CREATE TABLE/OF as a mapping to inheritance.
 May be appropriate, or may be replace later with something more exactly
 like one might expect from databases without the feature.

21 years agoImplement IS OF type predicate. Can now do queries of the form:
Thomas G. Lockhart [Sun, 4 Aug 2002 06:46:12 +0000 (06:46 +0000)]
Implement IS OF type predicate. Can now do queries of the form:
 select value IS OF (integer, float8);

21 years agoAdd guard code to protect from buffer overruns on long date/time input
Thomas G. Lockhart [Sun, 4 Aug 2002 06:44:47 +0000 (06:44 +0000)]
Add guard code to protect from buffer overruns on long date/time input
 strings. Should go back in and look at doing this a bit more elegantly
 and (hopefully) cheaper. Probably not too bad anyway, but it seems a
 shame to scan the strings twice: once for length for this buffer overrun
 protection, and once to parse the line.
Remove use of pow() in date/time handling; was already gone from everything
 *but* the time data types.
Define macros for handling typmod manipulation for date/time types.
 Should be more robust than all of that brute-force inline code.
Rename macros for masking and typmod manipulation to put TIMESTAMP_
 or INTERVAL_ in front of the macro name, to reduce the possibility
 of name space collisions.

21 years agoDefine macros for handling typmod manipulation for date/time types.
Thomas G. Lockhart [Sun, 4 Aug 2002 06:42:18 +0000 (06:42 +0000)]
Define macros for handling typmod manipulation for date/time types.
 Should be more robust than all of that brute-force inline code.
Rename macros for masking and typmod manipulation to put TIMESTAMP_
 or INTERVAL_ in front of the macro name, to reduce the possibility
 of name space collisions.

21 years agoImplement hex literal conversion to bit string literal.
Thomas G. Lockhart [Sun, 4 Aug 2002 06:36:18 +0000 (06:36 +0000)]
Implement hex literal conversion to bit string literal.
 May not be the long-term solution (some continuing discussion with
 Peter E.) but better than the current mapping of a conversion to integer
 which I'd put in years ago before we had any bit string types at all.
This is already supported in the bit string implementation elsewhere.

21 years agoAllow bit string constants without fully-specified length declaration.
Thomas G. Lockhart [Sun, 4 Aug 2002 06:33:59 +0000 (06:33 +0000)]
Allow bit string constants without fully-specified length declaration.
Implement conversion between 8-byte integers and bit strings.
 Similar to what is done for 4-byte integers.

21 years agoImplement WAL log location control using "-X" or PGXLOG.
Thomas G. Lockhart [Sun, 4 Aug 2002 06:26:38 +0000 (06:26 +0000)]
Implement WAL log location control using "-X" or PGXLOG.

21 years agoAdd IS OF type predicate.
Thomas G. Lockhart [Sun, 4 Aug 2002 06:17:29 +0000 (06:17 +0000)]
Add IS OF type predicate.

21 years agoAdd Myannar Time, Iran Time variant name, and Marquesas Time.
Thomas G. Lockhart [Sun, 4 Aug 2002 06:15:45 +0000 (06:15 +0000)]
Add Myannar Time, Iran Time variant name, and Marquesas Time.

21 years agoFix broken markup.
Tom Lane [Sun, 4 Aug 2002 05:46:02 +0000 (05:46 +0000)]
Fix broken markup.

21 years agoNeil's patch claimed a column list didn't work for COPY BINARY.
Tom Lane [Sun, 4 Aug 2002 05:22:02 +0000 (05:22 +0000)]
Neil's patch claimed a column list didn't work for COPY BINARY.
Which was true when he submitted it, but is so no longer.

21 years agoAdd missing file; new docs for start_transaction.
Bruce Momjian [Sun, 4 Aug 2002 05:14:06 +0000 (05:14 +0000)]
Add missing file;  new docs for start_transaction.

21 years agoTom Lane:
Bruce Momjian [Sun, 4 Aug 2002 05:12:43 +0000 (05:12 +0000)]
Tom Lane:
>       please find attached patch to current CVS ( contrib/ltree)
>       Version for 7.2 is distributed as separate package -

I believe that patch also intended to remove contrib/ltree/patch.72

21 years ago[ Previous patch reversed.]
Bruce Momjian [Sun, 4 Aug 2002 05:11:37 +0000 (05:11 +0000)]
[ Previous patch reversed.]

Please use this patch instead of my previously submitted one.

It is just remerged against HEAD for new alter_table.out stuff.

Another reason this patch is useful for _interactive_ users: imagine a
view based on a many way join.  Imagine creating a complicated insert
rule that inserts into all the joined tables and when you insert you get
a check failure, but you need to know which actual table the constraint
was on that failed!

Christopher Kings-Lynne

21 years agoThis patch fixes a probably harmless write of uninitialized memory in
Bruce Momjian [Sun, 4 Aug 2002 05:09:36 +0000 (05:09 +0000)]
This patch fixes a probably harmless write of uninitialized memory in
the statistics collector and makes a number of corrections to the
documentation for SET, SHOW, and COPY.

Neil Conway

21 years agoChange messages like this:
Bruce Momjian [Sun, 4 Aug 2002 05:04:40 +0000 (05:04 +0000)]
Change messages like this:

ERROR:  ExecInsert: rejected due to CHECK constraint insert_con

To be like this:

ERROR:  ExecInsert: rejected due to CHECK constraint "insert_con" on
"insert_tbl"

Updated regression tests to match.

I got sick of seeing 'rejected due to CHECK constraint "$1" in my log and
not being able to find the bug in our website code...

Christopher Kings-Lynne

21 years agoThis trivial patch fixes a small memory leak in pg_dump.
Bruce Momjian [Sun, 4 Aug 2002 05:03:29 +0000 (05:03 +0000)]
This trivial patch fixes a small memory leak in pg_dump.

Neil Conway

21 years agoplease find attached patch to current CVS ( contrib/ltree )
Bruce Momjian [Sun, 4 Aug 2002 05:02:50 +0000 (05:02 +0000)]
please find attached patch to current CVS ( contrib/ltree )

Changes:

July 31, 2002
   Now works on 64-bit platforms.
   Added function lca - lowest common ancestor
   Version for 7.2 is distributed as separate package -
   http://www.sai.msu.su/~megera/postgres/gist/ltree/ltree-7.2.tar.gz

Oleg Bartunov

21 years agoThis patch fixes a "multi-line string literal" warning encountered
Bruce Momjian [Sun, 4 Aug 2002 05:01:57 +0000 (05:01 +0000)]
This patch fixes a "multi-line string literal" warning encountered
when compiling psql with GCC 3.1.

Neil Conway

21 years agoThe attached patch implements START TRANSACTION, per SQL99. The
Bruce Momjian [Sun, 4 Aug 2002 04:31:44 +0000 (04:31 +0000)]
The attached patch implements START TRANSACTION, per SQL99. The
functionality of the command is basically identical to that of
BEGIN; it just accepts a few extra options (only one of which
PostgreSQL currently implements), and is standards-compliant.
The patch includes a simple regression test and documentation.

[ Regression tests removed, per Peter.]

Neil Conway

21 years agoThis patch fixes in intermittent failure in the regression tests:
Bruce Momjian [Sun, 4 Aug 2002 04:28:10 +0000 (04:28 +0000)]
This patch fixes in intermittent failure in the regression tests:
there was a race condition between the "alter_table" and "rules"
regression tests. Depending on scheduling, sometimes an ALTER
TABLE command would operate on a relation created by the "rules"
tests, leading to unexpected results.

Neil Conway

21 years agoThis patch adds support for inet[] arrays to the /contrib/array module.
Bruce Momjian [Sun, 4 Aug 2002 04:25:02 +0000 (04:25 +0000)]
This patch adds support for inet[] arrays to the /contrib/array module.

Neil Conway

21 years agoBack out pl/pgsql quotation fix. Has problems.
Bruce Momjian [Sun, 4 Aug 2002 04:17:33 +0000 (04:17 +0000)]
Back out pl/pgsql quotation fix.  Has problems.

21 years ago*** empty log message ***
Bruce Momjian [Sun, 4 Aug 2002 04:17:06 +0000 (04:17 +0000)]
*** empty log message ***

21 years ago*** empty log message ***
Bruce Momjian [Sun, 4 Aug 2002 04:16:47 +0000 (04:16 +0000)]
*** empty log message ***

21 years ago I send a simple patch for PL/pgSQL parser which allow now to use
Bruce Momjian [Sun, 4 Aug 2002 03:59:09 +0000 (03:59 +0000)]
    I send a simple patch for PL/pgSQL parser which allow now to use
whitespaces in identifers of any kind(table names,attribute
names,variables ...) in Pl/pgSQL procedural language.Explicit definition
of bug can be found in Re: [HACKERS] Bug of PL/pgSQL parser

TODO item completed:

        o -Fix PL/PgSQL to handle quoted mixed-case identifiers

eutm

21 years agoHere is a doc patch for the SHOW X changes and new config-settings
Bruce Momjian [Sun, 4 Aug 2002 03:53:11 +0000 (03:53 +0000)]
Here is a doc patch for the SHOW X changes and new config-settings
functions. If there are no objections, please apply.

Joe Conway

21 years agoWhen compiling with --enable-cassert, check for reference count leaks
Tom Lane [Fri, 2 Aug 2002 22:36:05 +0000 (22:36 +0000)]
When compiling with --enable-cassert, check for reference count leaks
in the relcache.  It's rather silly that we have reference count leak
checks in bufmgr and in catcache, but not in relcache which will normally
have many fewer entries.  Chris K-L would have caught at least one bug
in his recent DROP patch if he'd had this.

21 years agoRemoveAttrDefaultById() neglected to obtain exclusive lock on the
Tom Lane [Fri, 2 Aug 2002 21:54:34 +0000 (21:54 +0000)]
RemoveAttrDefaultById() neglected to obtain exclusive lock on the
relation being modified.  In most paths of control we'd already have
such a lock, but if we were dropping the default due to a cascaded
delete of some function it depended on, maybe not.

21 years agoRemove unused drop TODO.detail.
Bruce Momjian [Fri, 2 Aug 2002 20:03:48 +0000 (20:03 +0000)]
Remove unused drop TODO.detail.

21 years agoNo need for TODO.detail link anymore:
Bruce Momjian [Fri, 2 Aug 2002 20:03:23 +0000 (20:03 +0000)]
No need for TODO.detail link anymore:

>  o -Add ALTER TABLE DROP COLUMN feature

21 years agoDone:
Bruce Momjian [Fri, 2 Aug 2002 20:02:56 +0000 (20:02 +0000)]
Done:

>  o -Add ALTER TABLE DROP COLUMN feature [drop]

21 years agoALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,
Tom Lane [Fri, 2 Aug 2002 18:15:10 +0000 (18:15 +0000)]
ALTER TABLE DROP COLUMN works.  Patch by Christopher Kings-Lynne,
code review by Tom Lane.  Remaining issues: functions that take or
return tuple types are likely to break if one drops (or adds!)
a column in the table defining the type.  Need to think about what
to do here.

Along the way: some code review for recent COPY changes; mark system
columns attnotnull = true where appropriate, per discussion a month ago.

21 years ago* -Remove LockMethodTable.prio field, not used (Bruce)
Bruce Momjian [Thu, 1 Aug 2002 05:18:34 +0000 (05:18 +0000)]
* -Remove LockMethodTable.prio field, not used (Bruce)

21 years ago1) Improve the handling of the queries like (select ..) union (select ..)
Hiroshi Inoue [Thu, 1 Aug 2002 03:07:50 +0000 (03:07 +0000)]
1) Improve the handling of the queries like (select ..) union (select ..)
   whose first non-space character is '('.
2) Handle Insert .. () VALUES ().

21 years agoInstead of having a configure-time DEFAULT_ATTSTATTARGET, store -1 in
Tom Lane [Wed, 31 Jul 2002 17:19:54 +0000 (17:19 +0000)]
Instead of having a configure-time DEFAULT_ATTSTATTARGET, store -1 in
attstattarget to indicate 'use the default'.  The default is now a GUC
variable default_statistics_target, and so may be changed on the fly.  Along
the way we gain the ability to have pg_dump dump the per-column statistics
target when it's not the default.  Patch by Neil Conway, with some kibitzing
from Tom Lane.

21 years agoDone:
Bruce Momjian [Wed, 31 Jul 2002 03:13:16 +0000 (03:13 +0000)]
Done:

> * -Remove LockMethodTable.prio field, not used (Bruce)

21 years agoMove backend_pid to functions/misc.
Bruce Momjian [Wed, 31 Jul 2002 02:27:29 +0000 (02:27 +0000)]
Move backend_pid to functions/misc.

21 years agoRename pid function to backend_pid().
Bruce Momjian [Wed, 31 Jul 2002 01:49:13 +0000 (01:49 +0000)]
Rename pid function to backend_pid().

21 years agoAdd function to access backend pid, pg_stat_get_backend_mypid.
Bruce Momjian [Wed, 31 Jul 2002 00:40:40 +0000 (00:40 +0000)]
Add function to access backend pid, pg_stat_get_backend_mypid.

21 years agoDone:
Bruce Momjian [Wed, 31 Jul 2002 00:40:20 +0000 (00:40 +0000)]
Done:

> * -Add getpid() function to backend

21 years agoTeach pg_dump to dump user-defined operator classes. For the moment,
Tom Lane [Tue, 30 Jul 2002 21:56:04 +0000 (21:56 +0000)]
Teach pg_dump to dump user-defined operator classes.  For the moment,
this only works against 7.3 or later databases; the pushups required
to do it without regprocedure/regtype/etc seem more trouble than they're
worth, considering that existing users aren't expecting pg_dump support
for this.

21 years agoUpdated:
Bruce Momjian [Tue, 30 Jul 2002 19:47:09 +0000 (19:47 +0000)]
Updated:

<  o ALTER TABLE ADD COLUMN column SET DEFAULT should fill existing
>  o ALTER TABLE ADD COLUMN column DEFAULT should fill existing

21 years agoClarification from Tom:
Bruce Momjian [Tue, 30 Jul 2002 19:43:20 +0000 (19:43 +0000)]
Clarification from Tom:

<  o ALTER TABLE ALTER COLUMN column SET DEFAULT should fill existing
>  o ALTER TABLE ADD COLUMN column SET DEFAULT should fill existing

21 years agoWould it be wise to have the plsql.sgml file renamed to plpgsql.sgml?
Bruce Momjian [Tue, 30 Jul 2002 19:36:13 +0000 (19:36 +0000)]
Would it be wise to have the plsql.sgml file renamed to plpgsql.sgml?
All of the internal tags are of the latter.

The other thing I noticed is that most of the quick examples in the file
use a para and synopsis.  Is there a reason we're not using <example/> ?

Rod Taylor

21 years agoAdded for Neil Conway:
Bruce Momjian [Tue, 30 Jul 2002 19:34:05 +0000 (19:34 +0000)]
Added for Neil Conway:

> * Use CHECK constraints to improve optimizer decisions

21 years agoIf we're cleaning out _deadcode, might as well zap this one too.
Tom Lane [Tue, 30 Jul 2002 18:54:59 +0000 (18:54 +0000)]
If we're cleaning out _deadcode, might as well zap this one too.

21 years agoReplace ad-hoc insertions into pg_opclass and friends with CREATE
Tom Lane [Tue, 30 Jul 2002 18:48:34 +0000 (18:48 +0000)]
Replace ad-hoc insertions into pg_opclass and friends with CREATE
OPERATOR CLASS commands.

21 years agoRemove last recipe file.
Bruce Momjian [Tue, 30 Jul 2002 18:44:01 +0000 (18:44 +0000)]
Remove last recipe file.

21 years agoEnsure that src/tutorial gets cleaned by top-level make clean.
Tom Lane [Tue, 30 Jul 2002 17:47:58 +0000 (17:47 +0000)]
Ensure that src/tutorial gets cleaned by top-level make clean.

21 years agoReplace ad-hoc insertions into pg_opclass and friends with CREATE
Tom Lane [Tue, 30 Jul 2002 17:34:37 +0000 (17:34 +0000)]
Replace ad-hoc insertions into pg_opclass and friends with CREATE
OPERATOR CLASS commands.  Further tweaking of documentation for same.

21 years agoUse Max/Min macros, not MAX/MIN, to eliminate portability issues.
Tom Lane [Tue, 30 Jul 2002 17:32:10 +0000 (17:32 +0000)]
Use Max/Min macros, not MAX/MIN, to eliminate portability issues.

21 years agoDone:
Bruce Momjian [Tue, 30 Jul 2002 16:56:15 +0000 (16:56 +0000)]
Done:
>  o -Generate failure on short COPY lines rather than pad NULLs

21 years agoThe attached patch removes the last remnants of support for
Bruce Momjian [Tue, 30 Jul 2002 16:55:45 +0000 (16:55 +0000)]
The attached patch removes the last remnants of support for
'tioga recipes', whatever those are -- Peter E. killed most
of it a couple days ago, but this patch removes the rest. Most
of it was #ifdef'ed out anyway.

Neil Conway

21 years agoIMPROVED VERSION APPLIED:
Bruce Momjian [Tue, 30 Jul 2002 16:55:06 +0000 (16:55 +0000)]
IMPROVED VERSION APPLIED:

The attached patch completes the following TODO item:

    * Generate failure on short COPY lines rather than pad NULLs

I also restructed a lot of the existing COPY code, did some code
review on the column list patch sent in by Brent Verner a little
while ago, and added some regression tests. I also added an
explicit check (and resultant error) for extra data before
the end-of-line.

Neil Conway

21 years agoAdd ltree data type to contrib, from Teodor Sigaev and Oleg Bartunov.
Bruce Momjian [Tue, 30 Jul 2002 16:40:34 +0000 (16:40 +0000)]
Add ltree data type to contrib, from Teodor Sigaev and Oleg Bartunov.

21 years agoAdded support for schemas and quotes in tab-complete.c, as well as
Bruce Momjian [Tue, 30 Jul 2002 16:35:05 +0000 (16:35 +0000)]
Added support for schemas and quotes in tab-complete.c, as well as
a few other things:

* Made all references to the pg_* tables absolute, by specifying
  the pg_catalog schema.

* Added SCHEMA as a create/delete completion option.

* Added SCHEMA completion as: SELECT nspname FROM
pg_catalog.pg_namespace
  WHERE substr(nspname,1,%d)='%s'

* Added completion of "INSERT INTO <table> (" with attribute names.

* Added completion of "INSERT INTO <table> (attribs)" with
  VALUES or SELECT

* Added limited locking completion: only for one table:
  "LOCK" and "LOCK TABLE" now both get a completion list of tables
  Complete with "IN" for LOCK [TABLE] <table>
  Complete LOCK [TABLE] <table> IN with a lock mode

* Added a very simple WHERE finisher that uses the previous word
  as a table lookup for attributes.

* Added quote support when parsing "previous words". In other words,
  hitting tab after INSERT INTO "foo bar baby"
  now does the right thing and recognizes "foo bar baby" as one word.

Letting tab-complete quote things that should be quoted seems to be
temporarily ifdef'ed out due to readline compatibility problems.
Can anyone elaborate on this?

Greg Sabino Mullane

21 years ago This should fix a bug where a row that was updated or
Bruce Momjian [Tue, 30 Jul 2002 16:33:21 +0000 (16:33 +0000)]
    This should fix a bug where a row that was updated or
deleted that had another row inserted/updated to its old
value during the same statement or other statements before the
integrity check for noaction would incorrectly error.  This
could happen in deferred constraints or due to triggers or
functions. It's effectively a reworking of the previous patch that
did a not exists to instead do a separate check.

Stephan Szabo

21 years agoSince we're depending on %option noyywrap in the main scanner now,
Tom Lane [Tue, 30 Jul 2002 16:33:08 +0000 (16:33 +0000)]
Since we're depending on %option noyywrap in the main scanner now,
we may as well use it in all our flex files.  Make all the flex files
have a consistent set of options.

21 years agoAdd tablefunc to contrib makefile.
Bruce Momjian [Tue, 30 Jul 2002 16:32:20 +0000 (16:32 +0000)]
Add tablefunc to contrib makefile.

21 years agoAs mentioned above, here is my contrib/tablefunc patch. It includes
Bruce Momjian [Tue, 30 Jul 2002 16:31:11 +0000 (16:31 +0000)]
As mentioned above, here is my contrib/tablefunc patch. It includes
three functions which exercise the tablefunc API.

show_all_settings()
   - returns the same information as SHOW ALL, but as a query result

normal_rand(int numvals, float8 mean, float8 stddev, int seed)
   - returns a set of normally distributed float8 values
   - This routine implements Algorithm P (Polar method for normal
     deviates) from Knuth's _The_Art_of_Computer_Programming_, Volume 2,
     3rd ed., pages 122-126. Knuth cites his source as "The polar
     method", G. E. P. Box, M. E. Muller, and G. Marsaglia,
     _Annals_Math,_Stat._ 29 (1958), 610-611.

crosstabN(text sql)
   - returns a set of row_name plus N category value columns
   - crosstab2(), crosstab3(), and crosstab4() are defined for you,
     but you can create additional crosstab functions per directions
     in the README.

Joe Conway

21 years agoHere are two patches. The guc_and_tablefunc patch addresses the two
Bruce Momjian [Tue, 30 Jul 2002 16:20:03 +0000 (16:20 +0000)]
Here are two patches. The guc_and_tablefunc patch addresses the two
changes mentioned above, and also adds a new function to the tablefunc
API. The tablefunc API change adds the following function:

* Oid foidGetTypeId(Oid foid) - Get a function's typeid given the
* function Oid. Use this together with TypeGetTupleDesc() to get a
* TupleDesc which is derived from the function's declared return type.

In the next post I'll send the contrib/tablefunc patch, which
illustrates the usage of this new function. Also attached is a doc patch
for this change. The doc patch also adds a function that I failed to
document previously.

Joe Conway

21 years agoThis patch fixes one serious bug (runaway INSERT) and a few rare (and
Bruce Momjian [Tue, 30 Jul 2002 16:08:33 +0000 (16:08 +0000)]
This patch fixes one serious bug (runaway INSERT) and a few rare (and
hard to reproduce) error conditions.

Manfred Koizar

21 years agoUpdate contributions link.
Bruce Momjian [Tue, 30 Jul 2002 15:05:17 +0000 (15:05 +0000)]
Update contributions link.

21 years agoadded tests for crossReferences
Dave Cramer [Tue, 30 Jul 2002 13:22:38 +0000 (13:22 +0000)]
added tests for crossReferences

21 years agochanged test user back to test
Dave Cramer [Tue, 30 Jul 2002 13:22:02 +0000 (13:22 +0000)]
changed test user back to test

21 years agoAdded DataSource code and tests submitted by Aaron Mulder
Dave Cramer [Tue, 30 Jul 2002 11:41:10 +0000 (11:41 +0000)]
Added DataSource code and tests submitted by Aaron Mulder

21 years agochanges for new Datasource
Dave Cramer [Tue, 30 Jul 2002 11:38:13 +0000 (11:38 +0000)]
changes for new Datasource

21 years agoMove alarm timers to proper location.
Bruce Momjian [Tue, 30 Jul 2002 05:35:53 +0000 (05:35 +0000)]
Move alarm timers to proper location.

21 years agoRewrite xindex.sgml for CREATE OPERATOR CLASS. catalogs.sgml finally
Tom Lane [Tue, 30 Jul 2002 05:24:56 +0000 (05:24 +0000)]
Rewrite xindex.sgml for CREATE OPERATOR CLASS.  catalogs.sgml finally
contains descriptions of every single system table.  Update 'complex'
tutorial example too.

21 years agoMake statement_timeout apply to entire query string, not per statement.
Bruce Momjian [Tue, 30 Jul 2002 05:13:06 +0000 (05:13 +0000)]
Make statement_timeout apply to entire query string, not per statement.

21 years ago--enable-syslog no longer required to use syslog.
Bruce Momjian [Tue, 30 Jul 2002 04:24:54 +0000 (04:24 +0000)]
--enable-syslog no longer required to use syslog.

21 years agoMove item:
Bruce Momjian [Tue, 30 Jul 2002 03:12:37 +0000 (03:12 +0000)]
Move item:

< * Allow logging of query durations

21 years agoUpdate FAQ.
Bruce Momjian [Tue, 30 Jul 2002 01:35:29 +0000 (01:35 +0000)]
Update FAQ.

21 years agoFix a bug about automatic client_encoding setting.
Hiroshi Inoue [Tue, 30 Jul 2002 00:48:02 +0000 (00:48 +0000)]
Fix a bug about automatic client_encoding setting.

21 years agoUpdate FAQ.
Bruce Momjian [Mon, 29 Jul 2002 23:56:53 +0000 (23:56 +0000)]
Update FAQ.

21 years agoCentralize code for interpreting schema references, which had gotten
Tom Lane [Mon, 29 Jul 2002 23:46:35 +0000 (23:46 +0000)]
Centralize code for interpreting schema references, which had gotten
copied more places than I first thought it would.  This fixes a bug:
a couple of these places were neglecting to enforce USAGE access on
explicitly-referenced schemas.

21 years agoUse aclcheck_error() in place of ad-hoc permissions complaints.
Tom Lane [Mon, 29 Jul 2002 23:44:44 +0000 (23:44 +0000)]
Use aclcheck_error() in place of ad-hoc permissions complaints.

21 years agoImplement CREATE/DROP OPERATOR CLASS. Work still remains: need more
Tom Lane [Mon, 29 Jul 2002 22:14:11 +0000 (22:14 +0000)]
Implement CREATE/DROP OPERATOR CLASS.  Work still remains: need more
documentation (xindex.sgml should be rewritten), need to teach pg_dump
about it, need to update contrib modules that currently build pg_opclass
entries by hand.  Original patch by Bill Studenmund, grammar adjustments
and general update for 7.3 by Tom Lane.

21 years agoFix from Neil Conway:
Bruce Momjian [Mon, 29 Jul 2002 21:41:19 +0000 (21:41 +0000)]
Fix from Neil Conway:

<  o ALTER TABLE ADD COLUMN column SET DEFAULT should fill existing
>  o ALTER TABLE ALTER COLUMN column SET DEFAULT should fill existing

21 years agoFix minor coding error: don't ReleaseSysCache until after last use of
Tom Lane [Mon, 29 Jul 2002 20:45:44 +0000 (20:45 +0000)]
Fix minor coding error: don't ReleaseSysCache until after last use of
cache entry.

21 years agoFix typo. Remove #ifdef MULTIBYTE
Tatsuo Ishii [Mon, 29 Jul 2002 08:04:55 +0000 (08:04 +0000)]
Fix typo. Remove #ifdef MULTIBYTE

21 years agoStructure reference pages consistently. Document that structure.
Peter Eisentraut [Sun, 28 Jul 2002 15:22:21 +0000 (15:22 +0000)]
Structure reference pages consistently.  Document that structure.
Add information about environment variables.

21 years agoClean documentation subtree during make clean.
Peter Eisentraut [Sun, 28 Jul 2002 15:19:59 +0000 (15:19 +0000)]
Clean documentation subtree during make clean.

22 years agoAssemble portability modules into libpgport library.
Peter Eisentraut [Sat, 27 Jul 2002 20:10:05 +0000 (20:10 +0000)]
Assemble portability modules into libpgport library.
Some makefile simplifications.

22 years agoFix a bug about the handling of CX parameter of the connection string
Hiroshi Inoue [Fri, 26 Jul 2002 08:45:54 +0000 (08:45 +0000)]
Fix a bug about the handling of CX parameter of the connection string
reported by Sergey Smirnov.

22 years agoFouth (and final) phase of restructuring to add jdbc3 support.
Barry Lind [Fri, 26 Jul 2002 05:29:35 +0000 (05:29 +0000)]
Fouth (and final) phase of restructuring to add jdbc3 support.
 Modified Files:
  jdbc/org/postgresql/Driver.java.in
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
  jdbc/org/postgresql/jdbc1/Jdbc1Connection.java
  jdbc/org/postgresql/jdbc1/Jdbc1ResultSet.java
  jdbc/org/postgresql/jdbc2/Jdbc2Connection.java
  jdbc/org/postgresql/jdbc2/Jdbc2ResultSet.java
 Added Files:
  jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSetMetaData.java
  jdbc/org/postgresql/jdbc1/Jdbc1DatabaseMetaData.java
  jdbc/org/postgresql/jdbc1/Jdbc1ResultSetMetaData.java
  jdbc/org/postgresql/jdbc2/AbstractJdbc2DatabaseMetaData.java
  jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSetMetaData.java
  jdbc/org/postgresql/jdbc2/Jdbc2DatabaseMetaData.java
  jdbc/org/postgresql/jdbc2/Jdbc2ResultSetMetaData.java
 Removed Files:
  jdbc/org/postgresql/jdbc1/DatabaseMetaData.java
  jdbc/org/postgresql/jdbc1/ResultSetMetaData.java
  jdbc/org/postgresql/jdbc2/DatabaseMetaData.java
  jdbc/org/postgresql/jdbc2/ResultSetMetaData.java

22 years agoThird phase of restructuring to add jdbc3 support.
Barry Lind [Thu, 25 Jul 2002 22:45:28 +0000 (22:45 +0000)]
Third phase of restructuring to add jdbc3 support.
 Modified Files:
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
  jdbc/org/postgresql/jdbc1/DatabaseMetaData.java
  jdbc/org/postgresql/jdbc1/Jdbc1Connection.java
  jdbc/org/postgresql/jdbc1/Jdbc1ResultSet.java
  jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
  jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
  jdbc/org/postgresql/jdbc2/Array.java
  jdbc/org/postgresql/jdbc2/DatabaseMetaData.java
  jdbc/org/postgresql/jdbc2/Jdbc2Connection.java
  jdbc/org/postgresql/jdbc2/Jdbc2ResultSet.java
 Added Files:
  jdbc/org/postgresql/jdbc1/Jdbc1CallableStatement.java
  jdbc/org/postgresql/jdbc2/Jdbc2CallableStatement.java
 Removed Files:
  jdbc/org/postgresql/jdbc1/CallableStatement.java
  jdbc/org/postgresql/jdbc2/CallableStatement.java
  jdbc/org/postgresql/jdbc2/UpdateableResultSet.java

22 years agoRemove extra comma.
Peter Eisentraut [Thu, 25 Jul 2002 20:52:59 +0000 (20:52 +0000)]
Remove extra comma.

22 years agoImplement DROP CONVERSION
Tatsuo Ishii [Thu, 25 Jul 2002 10:07:13 +0000 (10:07 +0000)]
Implement DROP CONVERSION
Add regression test

22 years agoSecond phase of restructuring to add jdbc3 support.
Barry Lind [Wed, 24 Jul 2002 22:08:45 +0000 (22:08 +0000)]
Second phase of restructuring to add jdbc3 support.