OSDN Git Service

pg-rex/syncrep.git
22 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

22 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.

22 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.

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

22 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.

22 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.

22 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.

22 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

22 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

22 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

22 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.

22 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

22 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

22 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.

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

22 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

22 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

22 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

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

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

22 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

22 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

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

22 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.

22 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.

22 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.

22 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.

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

< * Allow logging of query durations

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

22 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.

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

22 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.

22 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.

22 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.

22 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

22 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.

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

22 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.

22 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.

22 years agoRemove _deadcode.
Peter Eisentraut [Wed, 24 Jul 2002 19:16:43 +0000 (19:16 +0000)]
Remove _deadcode.

22 years agoRemove unused system table columns:
Peter Eisentraut [Wed, 24 Jul 2002 19:11:14 +0000 (19:11 +0000)]
Remove unused system table columns:

pg_language.lancompiler
pg_operator.oprprec
pg_operator.oprisleft
pg_proc.proimplicit
pg_proc.probyte_pct
pg_proc.properbyte_cpu
pg_proc.propercall_cpu
pg_proc.prooutin_ratio
pg_shadow.usetrace
pg_type.typprtlen
pg_type.typreceive
pg_type.typsend

Attempts to use the obsoleted attributes of pg_operator or pg_proc
in the CREATE commands will be greeted by a warning.  For pg_type,
there is no warning (yet) because pg_dump scripts still contain these
attributes.

Also remove new but already obsolete spellings
isVolatile, isStable, isImmutable in WITH clause.  (Use new syntax
instead.)

22 years agoAdd mention of copyright year update.
Bruce Momjian [Wed, 24 Jul 2002 17:58:24 +0000 (17:58 +0000)]
Add mention of copyright year update.

22 years agoDone:
Bruce Momjian [Wed, 24 Jul 2002 17:42:12 +0000 (17:42 +0000)]
Done:

> * -Add Intimate Shared Memory(ISM) for Solaris

22 years agoAdd Japanese README explaining how to add new conversion.
Tatsuo Ishii [Wed, 24 Jul 2002 07:05:41 +0000 (07:05 +0000)]
Add Japanese README explaining how to add new conversion.
English README will come soon...

22 years agoAdd pg_conversion system catalog. Update description for multibyte support.
Tatsuo Ishii [Wed, 24 Jul 2002 05:51:56 +0000 (05:51 +0000)]
Add pg_conversion system catalog. Update description for multibyte support.

22 years agoDone:
Bruce Momjian [Tue, 23 Jul 2002 23:28:36 +0000 (23:28 +0000)]
Done:

> * -Allow UPDATE/DELETE on inherited table

22 years agoInitial restructuring to add jdbc3 support. There was a significant amount
Barry Lind [Tue, 23 Jul 2002 03:59:55 +0000 (03:59 +0000)]
Initial restructuring to add jdbc3 support.  There was a significant amount
of duplicated code between the jdbc1 and jdbc2.  This checkin restructures
the code so that the duplication is removed so that the jdbc3 support
can be added without adding yet another copy of everything.  Also many
classes were renamed to avoid confusion with multiple different objects
having the same name.  The timestamp tests were also updated to add support
for testing timestamp without time zone in addition to timestamp with time zone

 Modified Files:
  jdbc/Makefile jdbc/build.xml jdbc/example/ImageViewer.java
  jdbc/example/basic.java jdbc/example/blobtest.java
  jdbc/example/threadsafe.java
  jdbc/org/postgresql/Driver.java.in
  jdbc/org/postgresql/Field.java
  jdbc/org/postgresql/core/QueryExecutor.java
  jdbc/org/postgresql/fastpath/Fastpath.java
  jdbc/org/postgresql/jdbc1/CallableStatement.java
  jdbc/org/postgresql/jdbc1/DatabaseMetaData.java
  jdbc/org/postgresql/jdbc1/PreparedStatement.java
  jdbc/org/postgresql/jdbc2/Array.java
  jdbc/org/postgresql/jdbc2/CallableStatement.java
  jdbc/org/postgresql/jdbc2/DatabaseMetaData.java
  jdbc/org/postgresql/jdbc2/PreparedStatement.java
  jdbc/org/postgresql/jdbc2/UpdateableResultSet.java
  jdbc/org/postgresql/largeobject/LargeObjectManager.java
  jdbc/org/postgresql/largeobject/PGblob.java
  jdbc/org/postgresql/largeobject/PGclob.java
  jdbc/org/postgresql/test/jdbc2/BlobTest.java
  jdbc/org/postgresql/test/jdbc2/ConnectionTest.java
  jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java
  jdbc/org/postgresql/test/jdbc2/TimestampTest.java
  jdbc/org/postgresql/test/jdbc2/UpdateableResultTest.java
  jdbc/org/postgresql/util/Serialize.java
 Added Files:
  jdbc/org/postgresql/PGConnection.java
  jdbc/org/postgresql/PGStatement.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
  jdbc/org/postgresql/jdbc1/Jdbc1Connection.java
  jdbc/org/postgresql/jdbc1/Jdbc1ResultSet.java
  jdbc/org/postgresql/jdbc1/Jdbc1Statement.java
  jdbc/org/postgresql/jdbc2/AbstractJdbc2Connection.java
  jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
  jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
  jdbc/org/postgresql/jdbc2/Jdbc2Connection.java
  jdbc/org/postgresql/jdbc2/Jdbc2ResultSet.java
  jdbc/org/postgresql/jdbc2/Jdbc2Statement.java
 Removed Files:
  jdbc/org/postgresql/Connection.java
  jdbc/org/postgresql/ResultSet.java
  jdbc/org/postgresql/Statement.java
  jdbc/org/postgresql/jdbc1/Connection.java
  jdbc/org/postgresql/jdbc1/ResultSet.java
  jdbc/org/postgresql/jdbc1/Statement.java
  jdbc/org/postgresql/jdbc2/Connection.java
  jdbc/org/postgresql/jdbc2/ResultSet.java
  jdbc/org/postgresql/jdbc2/Statement.java

22 years agoAdd unique index on pg_cast.oid, and document pg_cast table.
Peter Eisentraut [Mon, 22 Jul 2002 20:23:19 +0000 (20:23 +0000)]
Add unique index on pg_cast.oid, and document pg_cast table.

22 years agoFix typo.
Tatsuo Ishii [Mon, 22 Jul 2002 13:00:00 +0000 (13:00 +0000)]
Fix typo.

22 years agoAdd CREATE CONVERSION/DROP CONVERSOION reference manual
Tatsuo Ishii [Mon, 22 Jul 2002 08:57:15 +0000 (08:57 +0000)]
Add CREATE CONVERSION/DROP CONVERSOION reference manual

22 years agoFixed some minor typos.
Michael Meskes [Sun, 21 Jul 2002 11:09:41 +0000 (11:09 +0000)]
Fixed some minor typos.

22 years agoRe-Committed old file.
Michael Meskes [Sun, 21 Jul 2002 08:20:07 +0000 (08:20 +0000)]
Re-Committed old file.

22 years agoSchema TODO.detail file not needed anymore.
Bruce Momjian [Sun, 21 Jul 2002 04:39:52 +0000 (04:39 +0000)]
Schema TODO.detail file not needed anymore.

22 years agoTweak CreateTrigger() so that the OID used in the name of an
Tom Lane [Sat, 20 Jul 2002 19:55:38 +0000 (19:55 +0000)]
Tweak CreateTrigger() so that the OID used in the name of an
RI_ConstraintTrigger is the same OID assigned to the pg_trigger row.
This reduces consumption of OIDs and may ease debugging.

22 years agoMark items as done:
Bruce Momjian [Sat, 20 Jul 2002 16:45:07 +0000 (16:45 +0000)]
Mark items as done:

> * -Add GUC parameter for DATESTYLE
>  o -Allow specification of column names
>  o -Change syntax to WITH DELIMITER, (keep old syntax around?)
>  o -Remove SET KSQO option now that OR processing is improved (Tom)
>  o -Allow SHOW to output as a query result, like EXPLAIN
> * -Add SQL92 schemas (Tom)

22 years agoCode review for SHOW output changes; fix horology expected files for
Tom Lane [Sat, 20 Jul 2002 15:12:56 +0000 (15:12 +0000)]
Code review for SHOW output changes; fix horology expected files for
new SHOW output format.

22 years agoSynced parser yet again.
Michael Meskes [Sat, 20 Jul 2002 08:24:18 +0000 (08:24 +0000)]
Synced parser yet again.

Michael

22 years agoFix regression tests for new SHOW output.
Bruce Momjian [Sat, 20 Jul 2002 06:32:53 +0000 (06:32 +0000)]
Fix regression tests for new SHOW output.

22 years agoFix problems caused by code drift of API for without-oids.
Bruce Momjian [Sat, 20 Jul 2002 06:17:43 +0000 (06:17 +0000)]
Fix problems caused by code drift of API for without-oids.

22 years agoThe attached patch fixes 2 trivial warnings generated by bison 1.35,
Bruce Momjian [Sat, 20 Jul 2002 05:58:34 +0000 (05:58 +0000)]
The attached patch fixes 2 trivial warnings generated by bison 1.35,
as a result of Peter's recent CREATE CAST changes.

Neil Conway

22 years agoI can't remember who said they were working on schema related psql
Bruce Momjian [Sat, 20 Jul 2002 05:57:31 +0000 (05:57 +0000)]
I can't remember who said they were working on schema related psql
changes, but I kept finding myself wishing I could see what schema a
table or view exists in when I use \dt, \dv, etc. So, here is a patch
which does just that.

It sorts on "Schema" first, and "Name" second.

It also changes the test for system objects to key off the namespace
name starting with 'pg_' instead of the object name.

Sample output:

test=# create schema testschema;
CREATE SCHEMA
test=# create view testschema.ts_view as select 1;
CREATE VIEW
test=# \dv
                  List of relations
         Name        |   Schema   | Type |  Owner
--------------------+------------+------+----------
  __testpassbyval    | public     | view | postgres
  fooview            | public     | view | postgres
  master_pg_proc     | public     | view | postgres
  rmt_pg_proc        | public     | view | postgres
  vw_dblink_get_pkey | public     | view | postgres
  vw_dblink_replace  | public     | view | postgres
  ts_view            | testschema | view | postgres
(7 rows)

Joe Conway

22 years ago> 2. This patch includes the same Table Function API fixes that I
Bruce Momjian [Sat, 20 Jul 2002 05:49:28 +0000 (05:49 +0000)]
> 2. This patch includes the same Table Function API fixes that I
>    submitted on July 9:
>
>    http://archives.postgresql.org/pgsql-patches/2002-07/msg00056.php
>
>    Please disregard that one *if* this one is applied. If this one is
>    rejected please go ahead with the July 9th patch.

The July 9th Table Function API patch mentioned above is now in CVS, so
here is an updated version of the guc patch which should apply cleanly
against CVS tip.

Joe Conway

22 years agoHello, i noticed that win32 native stopped working/compiling after the SSL merge
Bruce Momjian [Sat, 20 Jul 2002 05:43:31 +0000 (05:43 +0000)]
Hello, i noticed that win32 native stopped working/compiling after the SSL merge
.
So i took the opportunity to fix some stuff:

1. Made the thing compile (typos & needed definitions) with the new pqsecure_* s
tuff, and added fe-secure.c to the win32.mak makefile.
2. Fixed some MULTIBYTE compile errors (when building without MB support).
3. Made it do that you can build with debug info: "nmake -f win32.mak DEBUG=1".
4. Misc small compiler speedup changes.

The resulting .dll has been tested in production, and everything seems ok.
I CC:ed -hackers because i'm not sure about two things:

1. In libpq-int.h I typedef ssize_t as an int because Visual C (v6.0)
doesn't de fine ssize_t. Is that ok, or is there any standard about what
type should be use d for ssize_t?

2. To keep the .dll api consistent regarding MULTIBYTE I just return -1
in fe-connect.c:PQsetClientEncoding() instead of taking away the whole
function. I wonder if i should do any compares with the
conn->client_encoding and return 0 if not hing would have changed (if so
how do i check that?).

Regards

Magnus Naeslund

22 years agoAdd new configure files for missing-oid patch.
Bruce Momjian [Sat, 20 Jul 2002 05:39:46 +0000 (05:39 +0000)]
Add new configure files for missing-oid patch.

22 years agoPatch problems caused by code drift since OID patch creation.
Bruce Momjian [Sat, 20 Jul 2002 05:37:45 +0000 (05:37 +0000)]
Patch problems caused by code drift since OID patch creation.

22 years agoManually apply part of oid patch that didn't apply cleanly.
Bruce Momjian [Sat, 20 Jul 2002 05:29:01 +0000 (05:29 +0000)]
Manually apply part of oid patch that didn't apply cleanly.

22 years agooid is needed, it is added at the end of the struct (after the null
Bruce Momjian [Sat, 20 Jul 2002 05:16:59 +0000 (05:16 +0000)]
oid is needed, it is added at the end of the struct (after the null
bitmap, if present).

Per Tom Lane's suggestion the information whether a tuple has an oid
or not is carried in the tuple descriptor.  For debugging reasons
tdhasoid is of type char, not bool.  There are predefined values for
WITHOID, WITHOUTOID and UNDEFOID.

This patch has been generated against a cvs snapshot from last week
and I don't expect it to apply cleanly to current sources.  While I
post it here for public review, I'm working on a new version against a
current snapshot.  (There's been heavy activity recently; hope to
catch up some day ...)

This is a long patch;  if it is too hard to swallow, I can provide it
in smaller pieces:

Part 1:  Accessor macros
Part 2:  tdhasoid in TupDesc
Part 3:  Regression test
Part 4:  Parameter withoid to heap_addheader
Part 5:  Eliminate t_oid from HeapTupleHeader

Part 2 is the most hairy part because of changes in the executor and
even in the parser;  the other parts are straightforward.

Up to part 4 the patched postmaster stays binary compatible to
databases created with an unpatched version.  Part 5 is small (100
lines) and finally breaks compatibility.

Manfred Koizar

22 years agoThe attached patch fixes a build problem with GEQO when using the
Bruce Momjian [Sat, 20 Jul 2002 04:59:10 +0000 (04:59 +0000)]
The attached patch fixes a build problem with GEQO when using the
PX recombination operator, changes some elog() messages from LOG
to DEBUG1, puts some debugging functions inside the appropriate
#ifdef (not enabled by default), and makes a few other minor
cleanups.

BTW, the elog() change is motivated by at least one user who
has sent a concerned email to -general asking exactly what the
"ERX recombination operator" is, and what it is doing to their
DBMS.

Neil Conway

22 years agoAdd new vacuum regression test files.
Bruce Momjian [Sat, 20 Jul 2002 04:58:14 +0000 (04:58 +0000)]
Add new vacuum regression test files.

22 years agoThis patch fixes a regression caused by my recent changes to heap
Bruce Momjian [Sat, 20 Jul 2002 04:57:13 +0000 (04:57 +0000)]
This patch fixes a regression caused by my recent changes to heap
tuple header.  The fix is based on the thought that HEAP_MOVED_IN is
not needed any more as soon as HEAP_XMIN_COMMITTED has been set.  So
in tqual.c and vacuum.c the HEAP_MOVED bits are cleared when
HEAP_XMIN_COMMITTED is set.

Vacuum robustness is enhanced by rearranging ifs, so that we have a
chance to elog(ERROR, ...) before an assertion fails.

A new regression test is included.

Manfred Koizar

22 years agoApply patches from Neil Conway.
Tatsuo Ishii [Sat, 20 Jul 2002 03:02:01 +0000 (03:02 +0000)]
Apply patches from Neil Conway.

> Hi Tatsuo,
>
> I've attached a patch for the version of pgbench in CVS. It includes the
> following changes:
>
>     - fix some spelling mistakes, indentation stuff, etc.
>
>     - minor code cleanup -- (void) args instead of (), etc.
>
>     - allocate the state array dynamically, so that it is only as
>     large as needed. This reduces the memory consumption of pgbench
>     slightly, and makes a larger MAXCLIENTS setting possible
>
>     - (the only controversial change) add an option "-l" to log
>     transaction latencies to a file. The "transaction latency"
>     is the time between when the BEGIN is issued and the transaction
>     commits. This is written to a file, along with the client #
>     and the transaction #. The data in the file can then be used
>     for things like:
>
>         - consistency analysis: is the TPS the same through the
>         entire run of pgbench, or does it change?
>
>         - more detailed stats: what is the average latency, worse-case
>         latency, best-case latency?
>
>         - graphs: feed the data to gnuplot, graph latency versus. time
>
>         - etc.
>
>     I was going to store this data in memory and write it to disk
>     at the end of the pgbench run, but that isn't feasible because
>     the data can be very large: for example, ~70MB if benchmarking
>     128 clients doing 100,000 transactions each.
>
> Cheers,
>
> Neil

22 years agoSmall performance improvement --- use indexscan not heapscan to find
Tom Lane [Fri, 19 Jul 2002 22:21:17 +0000 (22:21 +0000)]
Small performance improvement --- use indexscan not heapscan to find
pg_statistic rows to delete while dropping a relation.

22 years agoMake note that ALTER TABLE can change table owner these days.
Tom Lane [Fri, 19 Jul 2002 18:53:50 +0000 (18:53 +0000)]
Make note that ALTER TABLE can change table owner these days.

22 years agoComplete TODO item:
Bruce Momjian [Fri, 19 Jul 2002 17:35:11 +0000 (17:35 +0000)]
Complete TODO item:

* -Add BSD-licensed qsort() for Solaris

22 years agoDone:
Bruce Momjian [Fri, 19 Jul 2002 17:26:35 +0000 (17:26 +0000)]
Done:

> * -Add BSD-licensed qsort() for Solaris

22 years agoAnother "$@" cleanup with new syntax, ${1+"$@"}.
Bruce Momjian [Fri, 19 Jul 2002 15:31:43 +0000 (15:31 +0000)]
Another "$@" cleanup with new syntax, ${1+"$@"}.

22 years agoFix "$@" to ${1:+"$@"} for older shells.
Bruce Momjian [Fri, 19 Jul 2002 13:50:06 +0000 (13:50 +0000)]
Fix "$@" to ${1:+"$@"} for older shells.

22 years agoOops. Too much ifdef out.
Tatsuo Ishii [Fri, 19 Jul 2002 11:09:25 +0000 (11:09 +0000)]
Oops. Too much ifdef out.

22 years agoTemporary ifdef out migrating functions to avoid compiler warnings.
Tatsuo Ishii [Fri, 19 Jul 2002 00:22:24 +0000 (00:22 +0000)]
Temporary ifdef out migrating functions to avoid compiler warnings.

22 years agoDone:
Bruce Momjian [Fri, 19 Jul 2002 00:17:53 +0000 (00:17 +0000)]
Done:

> * -HOLDER/HOLDERTAB rename to PROCLOCK/PROCLOCKTAG (Bruce)

22 years agoComplete TODO item:
Bruce Momjian [Fri, 19 Jul 2002 00:17:40 +0000 (00:17 +0000)]
Complete TODO item:

* -HOLDER/HOLDERTAB rename to PROCLOCK/PROCLOCKTAG

22 years agopg_cast table, and standards-compliant CREATE/DROP CAST commands, plus
Peter Eisentraut [Thu, 18 Jul 2002 23:11:32 +0000 (23:11 +0000)]
pg_cast table, and standards-compliant CREATE/DROP CAST commands, plus
extension to create binary compatible casts.  Includes dependency tracking
as well.

pg_proc.proimplicit is now defunct, but will be removed in a separate
commit.

pg_dump provides a migration path from the previous scheme to declare
casts.  Dumping binary compatible casts is currently impossible, though.

22 years agoDone:
Bruce Momjian [Thu, 18 Jul 2002 23:07:09 +0000 (23:07 +0000)]
Done:

> * -Merge LockMethodCtl and LockMethodTable into one shared structure (Bruce)

22 years agoComplete TODO item:
Bruce Momjian [Thu, 18 Jul 2002 23:06:20 +0000 (23:06 +0000)]
Complete TODO item:

* Merge LockMethodCtl and LockMethodTable into one shared structure (Bruce)

22 years agoCreate directory before installing files.
Peter Eisentraut [Thu, 18 Jul 2002 22:58:08 +0000 (22:58 +0000)]
Create directory before installing files.

22 years agoNew depend code doesn't need sequence drop.
Bruce Momjian [Thu, 18 Jul 2002 22:31:44 +0000 (22:31 +0000)]
New depend code doesn't need sequence drop.

22 years agoSic transit src/utils.
Tom Lane [Thu, 18 Jul 2002 22:15:10 +0000 (22:15 +0000)]
Sic transit src/utils.

22 years agoBack out BETWEEN node patch, was causing initdb failure.
Bruce Momjian [Thu, 18 Jul 2002 17:14:20 +0000 (17:14 +0000)]
Back out BETWEEN node patch, was causing initdb failure.

22 years ago New depend code auto-drops sequence, fix copy2.out.
Bruce Momjian [Thu, 18 Jul 2002 17:11:49 +0000 (17:11 +0000)]
 New depend code auto-drops sequence, fix copy2.out.

22 years agoImplement DROP SCHEMA. It lacks support for dropping conversions and
Tom Lane [Thu, 18 Jul 2002 16:47:26 +0000 (16:47 +0000)]
Implement DROP SCHEMA.  It lacks support for dropping conversions and
operator classes, both of which are schema-local and so should really
be droppable.

22 years agoFix copy-and-pasteo (CASCADE/RESTRICT in wrong place).
Tom Lane [Thu, 18 Jul 2002 15:49:08 +0000 (15:49 +0000)]
Fix copy-and-pasteo (CASCADE/RESTRICT in wrong place).

22 years agoFix typo (PG_UNICODE -> PG_UTF8)
Tatsuo Ishii [Thu, 18 Jul 2002 05:07:30 +0000 (05:07 +0000)]
Fix typo (PG_UNICODE -> PG_UTF8)

22 years agoDone:
Bruce Momjian [Thu, 18 Jul 2002 05:01:51 +0000 (05:01 +0000)]
Done:

> * -Make sure all block numbers are unsigned to increase maximum table size