[COMMITTERS] stackbuilder - wizard: The newest Japanese po.

2008-09-09 Thread User H-saito
Log Message:
---
The newest Japanese po.

Modified Files:
--
wizard/i18n/ja_JP:
StackBuilder.po (r1.2 -> r1.3)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/stackbuilder/wizard/i18n/ja_JP/StackBuilder.po.diff?r1=1.2&r2=1.3)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Improve plpgsql's ability to report tuple incompatibility

2008-09-09 Thread Alvaro Herrera
Log Message:
---
Improve plpgsql's ability to report tuple incompatibility problems.

Volkan YAZICI

Modified Files:
--
pgsql/src/pl/plpgsql/src:
pl_exec.c (r1.219 -> r1.220)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpgsql/src/pl_exec.c?r1=1.219&r2=1.220)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Improve the plan cache invalidation mechanism to make it

2008-09-09 Thread Tom Lane
Log Message:
---
Improve the plan cache invalidation mechanism to make it invalidate plans
when user-defined functions used in a plan are modified.  Also invalidate
plans when schemas, operators, or operator classes are modified; but for these
cases we just invalidate everything rather than tracking exact dependencies,
since these types of objects seldom change in a production database.

Tom Lane; loosely based on a patch by Martin Pihlak.

Modified Files:
--
pgsql/src/backend/catalog:
namespace.c (r1.111 -> r1.112)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/catalog/namespace.c?r1=1.111&r2=1.112)
pgsql/src/backend/nodes:
copyfuncs.c (r1.404 -> r1.405)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/nodes/copyfuncs.c?r1=1.404&r2=1.405)
outfuncs.c (r1.338 -> r1.339)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/nodes/outfuncs.c?r1=1.338&r2=1.339)
pgsql/src/backend/optimizer/plan:
planner.c (r1.242 -> r1.243)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/plan/planner.c?r1=1.242&r2=1.243)
setrefs.c (r1.143 -> r1.144)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/plan/setrefs.c?r1=1.143&r2=1.144)
pgsql/src/backend/optimizer/util:
clauses.c (r1.266 -> r1.267)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/util/clauses.c?r1=1.266&r2=1.267)
pgsql/src/backend/parser:
parse_oper.c (r1.105 -> r1.106)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_oper.c?r1=1.105&r2=1.106)
pgsql/src/backend/utils/adt:
acl.c (r1.141 -> r1.142)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/acl.c?r1=1.141&r2=1.142)
pgsql/src/backend/utils/cache:
inval.c (r1.86 -> r1.87)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/cache/inval.c?r1=1.86&r2=1.87)
plancache.c (r1.20 -> r1.21)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/cache/plancache.c?r1=1.20&r2=1.21)
ts_cache.c (r1.7 -> r1.8)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/cache/ts_cache.c?r1=1.7&r2=1.8)
pgsql/src/backend/utils/misc:
superuser.c (r1.37 -> r1.38)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/superuser.c?r1=1.37&r2=1.38)
pgsql/src/include/nodes:
nodes.h (r1.211 -> r1.212)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/nodes/nodes.h?r1=1.211&r2=1.212)
plannodes.h (r1.102 -> r1.103)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/nodes/plannodes.h?r1=1.102&r2=1.103)
relation.h (r1.158 -> r1.159)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/nodes/relation.h?r1=1.158&r2=1.159)
pgsql/src/include/optimizer:
planmain.h (r1.111 -> r1.112)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/optimizer/planmain.h?r1=1.111&r2=1.112)
pgsql/src/include/utils:
inval.h (r1.43 -> r1.44)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/inval.h?r1=1.43&r2=1.44)
plancache.h (r1.12 -> r1.13)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/plancache.h?r1=1.12&r2=1.13)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Fix a couple of places where the plpgsql grammar would produce an

2008-09-09 Thread Tom Lane
Log Message:
---
Fix a couple of places where the plpgsql grammar would produce an unhelpful
'syntax error' message, rather than something that might draw one's
attention to a missing or wrong-type variable declaration.  Per recent
gripe.

Modified Files:
--
pgsql/src/pl/plpgsql/src:
gram.y (r1.114 -> r1.115)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpgsql/src/gram.y?r1=1.114&r2=1.115)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] npgsql - Npgsql2: Updated project homepage

2008-09-09 Thread User Fxjr
Log Message:
---

Updated project homepage

Modified Files:
--
Npgsql2:
README.txt (r1.1 -> r1.2)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/README.txt.diff?r1=1.1&r2=1.2)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


20 Life Changing Minutes That You DO NOT Want to Miss

2008-09-09 Thread [EMAIL PROTECTED]
If you have 20 minutes to spare, then you can be well on your way to financial 
stability.
 20 minutes is all it takes to listen to two short audio clips, about a 
revolutionary home 
business, that has global status. It's creating wealth and extra income 
for thousands 
around the world. Want to know more about this great opportunity...? Then just 
click on
 the link that follows this message. Thanks for your time and have a great day.
http://www.automatedblogs4cash.ws/20minutes2success


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Real 
Careers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Real-Careers?hl=en
-~--~~~~--~~--~--~---