summaryrefslogtreecommitdiff
path: root/src/test/regress/output/create_function_2.source
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-03-07 20:18:15 +0000
committerBruce Momjian <bruce@momjian.us>2002-03-07 20:18:15 +0000
commit7ce0f9c375505e86e2383591eaed7b992ccc938c (patch)
treedc56370603f44649505c0a4720547c4f44ab043c /src/test/regress/output/create_function_2.source
parent7d1b8fe71622b979326835295a0bf47b3ac903b1 (diff)
downloadpostgresql-7ce0f9c375505e86e2383591eaed7b992ccc938c.tar.gz
Adjust elog() tags so source and regression tests match.
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 ee55c21308..137242da70 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';
-INFO: hobbies_r.name%TYPE converted to text
-INFO: hobbies_r.person%TYPE converted to text
+NOTICE: hobbies_r.name%TYPE converted to text
+NOTICE: 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'