[COMMITTERS] pgsql-server/ oc/src/sgml/Tag: oc/src/sgml/REL ...

2003-12-07 Thread Peter Eisentraut - PostgreSQL
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/07 06:18:50

Modified files:
doc/src/sgml   : Tag: REL7_4_STABLE release.sgml 
src/backend/catalog: Tag: REL7_4_STABLE information_schema.sql 

Log message:
Fix typmod interpretation for bit types.  (It was erroneously assumed that
for bit(x), the typmod stores x+4, like for the character types.)


---(end of broadcast)---
TIP 6: Have you searched our list archives?

   http://archives.postgresql.org


[COMMITTERS] pgsql-server/src/backend/catalog information_s ...

2003-12-07 Thread Peter Eisentraut - PostgreSQL
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/07 06:21:58

Modified files:
src/backend/catalog: information_schema.sql 

Log message:
Fix typmod interpretation for bit types.  (It was erroneously assumed that
for bit(x), the typmod stores x+4, like for the character types.)


---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])


[COMMITTERS] pgsql-server/src/backend/catalog Tag: REL7_4_S ...

2003-12-07 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/07 15:43:13

Modified files:
src/backend/catalog: Tag: REL7_4_STABLE information_schema.sql 

Log message:
Remove test on c.relkind from check_constraints view; unnecessary and
prevents view from showing constraints on domains.  This addresses the
other half of Claus Colloseus' bug report.


---(end of broadcast)---
TIP 6: Have you searched our list archives?

   http://archives.postgresql.org


[COMMITTERS] pgsql-server/src/backend/catalog information_s ...

2003-12-07 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/07 15:43:02

Modified files:
src/backend/catalog: information_schema.sql 

Log message:
Remove test on c.relkind from check_constraints view; unnecessary and
prevents view from showing constraints on domains.  This addresses the
other half of Claus Colloseus' bug report.


---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])


[COMMITTERS] pgsql-server/contrib pg_autovacuum/pg_autovacu ...

2003-12-07 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/07 15:55:59

Modified files:
contrib/pg_autovacuum: pg_autovacuum.c 
contrib/pgbench: pgbench.c 

Log message:
Replace unportable and overflow-prone use of 'long long' with safer
'double' arithmetic, per recent discussion.


---(end of broadcast)---
TIP 7: don't forget to increase your free space map settings


[COMMITTERS] pgsql-server/contrib pg_autovacuum/Tag: pg_aut ...

2003-12-07 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/07 15:56:07

Modified files:
contrib/pg_autovacuum: Tag: REL7_4_STABLE pg_autovacuum.c 
contrib/pgbench: Tag: REL7_4_STABLE pgbench.c 

Log message:
Replace unportable and overflow-prone use of 'long long' with safer
'double' arithmetic, per recent discussion.


---(end of broadcast)---
TIP 9: the planner will ignore your desire to choose an index scan if your
  joining column's datatypes do not match