pgsql: Change tsearch2 to not use the unsafe practice of creating

From: tgl(at)svr1(dot)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Change tsearch2 to not use the unsafe practice of creating
Date: 2005-05-03 16:51:45
Message-ID: 20050503165145.B4D7F53A4C@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Change tsearch2 to not use the unsafe practice of creating functions
that return INTERNAL without also having INTERNAL arguments. Since the
functions in question aren't meant to be called by hand anyway, I just
redeclared them to take 'internal' instead of 'text'. Also add code
to ProcedureCreate() to enforce the restriction, as I should have done
to start with :-(

Tags:
----
REL7_4_STABLE

Modified Files:
--------------
pgsql/contrib/tsearch2/gendict:
sql.IN (r1.1 -> r1.1.4.1)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/gendict/sql.IN.diff?r1=1.1&r2=1.1.4.1)
pgsql/contrib/tsearch2:
tsearch.sql.in (r1.1.2.1 -> r1.1.2.2)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/tsearch.sql.in.diff?r1=1.1.2.1&r2=1.1.2.2)
untsearch.sql.in (r1.2 -> r1.2.4.1)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/untsearch.sql.in.diff?r1=1.2&r2=1.2.4.1)
pgsql/src/backend/catalog:
pg_proc.c (r1.109 -> r1.109.2.1)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/catalog/pg_proc.c.diff?r1=1.109&r2=1.109.2.1)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2005-05-03 19:17:59 pgsql: Alter the signature for encoding conversion functions to declare
Previous Message Tom Lane 2005-05-03 16:51:22 pgsql: Change tsearch2 to not use the unsafe practice of creating