@@ -2778,7 +2778,7 @@ begin
2778
2778
end$$ language plpgsql;
2779
2779
select stricttest();
2780
2780
ERROR: query returned more than one row
2781
- HINT: Make sure the query returns a single row, or use LIMIT 1
2781
+ HINT: Make sure the query returns a single row, or use LIMIT 1.
2782
2782
CONTEXT: PL/pgSQL function stricttest() line 5 at SQL statement
2783
2783
create or replace function stricttest() returns void as $$
2784
2784
declare x record;
@@ -2852,7 +2852,7 @@ begin
2852
2852
end$$ language plpgsql;
2853
2853
select stricttest();
2854
2854
ERROR: query returned more than one row
2855
- HINT: Make sure the query returns a single row, or use LIMIT 1
2855
+ HINT: Make sure the query returns a single row, or use LIMIT 1.
2856
2856
CONTEXT: PL/pgSQL function stricttest() line 5 at SQL statement
2857
2857
create or replace function stricttest() returns void as $$
2858
2858
declare x record;
@@ -2918,7 +2918,7 @@ end$$ language plpgsql;
2918
2918
select stricttest();
2919
2919
ERROR: query returned more than one row
2920
2920
DETAIL: parameters: p1 = '2', p3 = 'foo'
2921
- HINT: Make sure the query returns a single row, or use LIMIT 1
2921
+ HINT: Make sure the query returns a single row, or use LIMIT 1.
2922
2922
CONTEXT: PL/pgSQL function stricttest() line 8 at SQL statement
2923
2923
create or replace function stricttest() returns void as $$
2924
2924
declare x record;
@@ -2929,7 +2929,7 @@ begin
2929
2929
end$$ language plpgsql;
2930
2930
select stricttest();
2931
2931
ERROR: query returned more than one row
2932
- HINT: Make sure the query returns a single row, or use LIMIT 1
2932
+ HINT: Make sure the query returns a single row, or use LIMIT 1.
2933
2933
CONTEXT: PL/pgSQL function stricttest() line 5 at SQL statement
2934
2934
create or replace function stricttest() returns void as $$
2935
2935
declare x record;
@@ -2977,7 +2977,7 @@ begin
2977
2977
end$$ language plpgsql;
2978
2978
select stricttest();
2979
2979
ERROR: query returned more than one row
2980
- HINT: Make sure the query returns a single row, or use LIMIT 1
2980
+ HINT: Make sure the query returns a single row, or use LIMIT 1.
2981
2981
CONTEXT: PL/pgSQL function stricttest() line 10 at SQL statement
2982
2982
reset plpgsql.print_strict_params;
2983
2983
create or replace function stricttest() returns void as $$
@@ -2995,7 +2995,7 @@ end$$ language plpgsql;
2995
2995
select stricttest();
2996
2996
ERROR: query returned more than one row
2997
2997
DETAIL: parameters: p1 = '2', p3 = 'foo'
2998
- HINT: Make sure the query returns a single row, or use LIMIT 1
2998
+ HINT: Make sure the query returns a single row, or use LIMIT 1.
2999
2999
CONTEXT: PL/pgSQL function stricttest() line 10 at SQL statement
3000
3000
-- test warnings and errors
3001
3001
set plpgsql.extra_warnings to 'all';
@@ -3128,7 +3128,7 @@ begin
3128
3128
end;
3129
3129
$$;
3130
3130
WARNING: query returned more than one row
3131
- HINT: Make sure the query returns a single row, or use LIMIT 1
3131
+ HINT: Make sure the query returns a single row, or use LIMIT 1.
3132
3132
set plpgsql.extra_errors to 'too_many_rows';
3133
3133
do $$
3134
3134
declare x int;
@@ -3137,7 +3137,7 @@ begin
3137
3137
end;
3138
3138
$$;
3139
3139
ERROR: query returned more than one row
3140
- HINT: Make sure the query returns a single row, or use LIMIT 1
3140
+ HINT: Make sure the query returns a single row, or use LIMIT 1.
3141
3141
CONTEXT: PL/pgSQL function inline_code_block line 4 at SQL statement
3142
3142
reset plpgsql.extra_errors;
3143
3143
reset plpgsql.extra_warnings;
0 commit comments