Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite0c192e

Browse files
author
Thomas G. Lockhart
committed
Fix up error message to start with cap letter.
1 parenta1e6a09 commite0c192e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎src/test/regress/expected/errors.out

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ select * from nonesuch;
2222
ERROR: parser: parse error at or near "select"
2323
-- bad name in target list
2424
select nonesuch from pg_database;
25-
ERROR:attribute 'nonesuch' not found
25+
ERROR:Attribute 'nonesuch' not found
2626
-- bad attribute name on lhs of operator
2727
select * from pg_database where nonesuch = pg_database.datname;
28-
ERROR:attribute 'nonesuch' not found
28+
ERROR:Attribute 'nonesuch' not found
2929
-- bad attribute name on rhs of operator
3030
select * from pg_database where pg_database.datname = nonesuch;
31-
ERROR:attribute 'nonesuch' not found
31+
ERROR:Attribute 'nonesuch' not found
3232
-- bad select distinct on syntax, distinct attribute missing
3333
select distinct on (foobar) from pg_database;
3434
ERROR: parser: parse error at or near "from"
3535
-- bad select distinct on syntax, distinct attribute not in target list
3636
select distinct on (foobar) * from pg_database;
37-
ERROR:attribute 'foobar' not found
37+
ERROR:Attribute 'foobar' not found
3838
--
3939
-- DELETE
4040

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp