summaryrefslogtreecommitdiff
path: root/src/test/regress/output/create_function_2.source
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-03-03 01:05:22 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-03-03 01:05:22 +0000
commitce7a4f06a2fe7c8560455677a5876d0f42caac5c (patch)
treebfec95a128b22e2556463f6307c0f83944204a34 /src/test/regress/output/create_function_2.source
parentcfae62c47652e11963acdd11f1a7aa3a50f11abd (diff)
downloadpostgresql-ce7a4f06a2fe7c8560455677a5876d0f42caac5c.tar.gz
Cause regression tests to pass again after elog changes.
Diffstat (limited to 'src/test/regress/output/create_function_2.source')
-rw-r--r--src/test/regress/output/create_function_2.source4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/output/create_function_2.source b/src/test/regress/output/create_function_2.source
index 137242da70..ee55c21308 100644
--- a/src/test/regress/output/create_function_2.source
+++ b/src/test/regress/output/create_function_2.source
@@ -13,8 +13,8 @@ CREATE FUNCTION hobbies_by_name(hobbies_r.name%TYPE)
RETURNS hobbies_r.person%TYPE
AS 'select person from hobbies_r where name = $1'
LANGUAGE 'sql';
-NOTICE: hobbies_r.name%TYPE converted to text
-NOTICE: hobbies_r.person%TYPE converted to text
+INFO: hobbies_r.name%TYPE converted to text
+INFO: hobbies_r.person%TYPE converted to text
CREATE FUNCTION equipment(hobbies_r)
RETURNS setof equipment_r
AS 'select * from equipment_r where hobby = $1.name'