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

Commitf2c71cb

Browse files
committed
Stop using spelling "nonexistant".
The documentation used "nonexistent" exclusively, and the source treeused it three times as often as "nonexistant".
1 parent31d250e commitf2c71cb

File tree

21 files changed

+69
-69
lines changed

21 files changed

+69
-69
lines changed

‎contrib/test_decoding/expected/ddl.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ HINT: Replication slot names may only contain lower case letters, numbers, and
1717
SELECT 'init' FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'include-xids', 'frakbar');
1818
ERROR: could not parse value "frakbar" for parameter "include-xids"
1919
CONTEXT: slot "regression_slot", output plugin "test_decoding", in the startup callback
20-
SELECT 'init' FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'nonexistant-option', 'frakbar');
21-
ERROR: option "nonexistant-option" = "frakbar" is unknown
20+
SELECT 'init' FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'nonexistent-option', 'frakbar');
21+
ERROR: option "nonexistent-option" = "frakbar" is unknown
2222
CONTEXT: slot "regression_slot", output plugin "test_decoding", in the startup callback
2323
SELECT 'init' FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'include-xids', 'frakbar');
2424
ERROR: could not parse value "frakbar" for parameter "include-xids"

‎contrib/test_decoding/sql/ddl.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SELECT 'init' FROM pg_create_logical_replication_slot('Invalid Name', 'test_deco
99

1010
-- fail twice because of an invalid parameter values
1111
SELECT'init'FROM pg_logical_slot_get_changes('regression_slot',NULL,NULL,'include-xids','frakbar');
12-
SELECT'init'FROM pg_logical_slot_get_changes('regression_slot',NULL,NULL,'nonexistant-option','frakbar');
12+
SELECT'init'FROM pg_logical_slot_get_changes('regression_slot',NULL,NULL,'nonexistent-option','frakbar');
1313
SELECT'init'FROM pg_logical_slot_get_changes('regression_slot',NULL,NULL,'include-xids','frakbar');
1414

1515
-- succeed once

‎src/bin/pg_dump/t/002_pg_dump.pl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3340,22 +3340,22 @@
33403340
# Test dumping a non-existent schema, table, and patterns with --strict-names
33413341
33423342
command_fails_like(
3343-
[ 'pg_dump', '-p', "$port", '-n', 'nonexistant' ],
3343+
[ 'pg_dump', '-p', "$port", '-n', 'nonexistent' ],
33443344
qr/\Qpg_dump: error: no matching schemas were found\E/,
33453345
'dumping a non-existent schema');
33463346
33473347
command_fails_like(
3348-
[ 'pg_dump', '-p', "$port", '-t', 'nonexistant' ],
3348+
[ 'pg_dump', '-p', "$port", '-t', 'nonexistent' ],
33493349
qr/\Qpg_dump: error: no matching tables were found\E/,
33503350
'dumping a non-existent table');
33513351
33523352
command_fails_like(
3353-
[ 'pg_dump', '-p', "$port", '--strict-names', '-n', 'nonexistant*' ],
3353+
[ 'pg_dump', '-p', "$port", '--strict-names', '-n', 'nonexistent*' ],
33543354
qr/\Qpg_dump: error: no matching schemas were found for pattern\E/,
33553355
'no matching schemas');
33563356
33573357
command_fails_like(
3358-
[ 'pg_dump', '-p', "$port", '--strict-names', '-t', 'nonexistant*' ],
3358+
[ 'pg_dump', '-p', "$port", '--strict-names', '-t', 'nonexistent*' ],
33593359
qr/\Qpg_dump: error: no matching tables were found for pattern\E/,
33603360
'no matching tables');
33613361

‎src/interfaces/ecpg/test/connect/test1.pgc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ exec sql end declare section;
5050
exec sql disconnect;
5151

5252
/* wrong db */
53-
exec sql connect to tcp:postgresql://localhost/nonexistant user regress_ecpg_user1 identified by connectpw;
53+
exec sql connect to tcp:postgresql://localhost/nonexistent user regress_ecpg_user1 identified by connectpw;
5454
exec sql disconnect;
5555

5656
/* wrong port */

‎src/interfaces/ecpg/test/connect/test5.pgc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ exec sql end declare section;
7070
exec sql disconnect main;
7171

7272
/* not connected */
73-
exec sql disconnectnonexistant;
73+
exec sql disconnectnonexistent;
7474

7575
return 0;
7676
}

‎src/interfaces/ecpg/test/expected/connect-test1-minGW32.stderr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@
5252
[NO_PID]: sqlca: code: 0, state: 00000
5353
[NO_PID]: ecpg_finish: connection ecpg2_regression closed
5454
[NO_PID]: sqlca: code: 0, state: 00000
55-
[NO_PID]: ECPGconnect: opening databasenonexistant on localhost port <DEFAULT> for user regress_ecpg_user1
55+
[NO_PID]: ECPGconnect: opening databasenonexistent on localhost port <DEFAULT> for user regress_ecpg_user1
5656
[NO_PID]: sqlca: code: 0, state: 00000
57-
[NO_PID]: ECPGconnect: could not open database: FATAL: database "nonexistant" does not exist
57+
[NO_PID]: ECPGconnect: could not open database: FATAL: database "nonexistent" does not exist
5858

5959
[NO_PID]: sqlca: code: 0, state: 00000
60-
[NO_PID]: ecpg_finish: connectionnonexistant closed
60+
[NO_PID]: ecpg_finish: connectionnonexistent closed
6161
[NO_PID]: sqlca: code: 0, state: 00000
62-
[NO_PID]: raising sqlcode -402 on line 53: could not connect to database "nonexistant" on line 53
62+
[NO_PID]: raising sqlcode -402 on line 53: could not connect to database "nonexistent" on line 53
6363
[NO_PID]: sqlca: code: -402, state: 08001
6464
[NO_PID]: raising sqlcode -220 on line 54: connection "CURRENT" does not exist on line 54
6565
[NO_PID]: sqlca: code: -220, state: 08003

‎src/interfaces/ecpg/test/expected/connect-test1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ main(void)
101101

102102

103103
/* wrong db */
104-
{ECPGconnect(__LINE__,0,"tcp:postgresql://localhost/nonexistant" ,"regress_ecpg_user1" ,"connectpw" ,NULL,0); }
104+
{ECPGconnect(__LINE__,0,"tcp:postgresql://localhost/nonexistent" ,"regress_ecpg_user1" ,"connectpw" ,NULL,0); }
105105
#line 53 "test1.pgc"
106106

107107
{ECPGdisconnect(__LINE__,"CURRENT");}

‎src/interfaces/ecpg/test/expected/connect-test1.stderr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@
5252
[NO_PID]: sqlca: code: 0, state: 00000
5353
[NO_PID]: ecpg_finish: connection ecpg2_regression closed
5454
[NO_PID]: sqlca: code: 0, state: 00000
55-
[NO_PID]: ECPGconnect: opening databasenonexistant on localhost port <DEFAULT> for user regress_ecpg_user1
55+
[NO_PID]: ECPGconnect: opening databasenonexistent on localhost port <DEFAULT> for user regress_ecpg_user1
5656
[NO_PID]: sqlca: code: 0, state: 00000
57-
[NO_PID]: ECPGconnect: could not open database: FATAL: database "nonexistant" does not exist
57+
[NO_PID]: ECPGconnect: could not open database: FATAL: database "nonexistent" does not exist
5858

5959
[NO_PID]: sqlca: code: 0, state: 00000
60-
[NO_PID]: ecpg_finish: connectionnonexistant closed
60+
[NO_PID]: ecpg_finish: connectionnonexistent closed
6161
[NO_PID]: sqlca: code: 0, state: 00000
62-
[NO_PID]: raising sqlcode -402 on line 53: could not connect to database "nonexistant" on line 53
62+
[NO_PID]: raising sqlcode -402 on line 53: could not connect to database "nonexistent" on line 53
6363
[NO_PID]: sqlca: code: -402, state: 08001
6464
[NO_PID]: raising sqlcode -220 on line 54: connection "CURRENT" does not exist on line 54
6565
[NO_PID]: sqlca: code: -220, state: 08003

‎src/interfaces/ecpg/test/expected/connect-test5.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ main(void)
154154

155155

156156
/* not connected */
157-
{ECPGdisconnect(__LINE__,"nonexistant");}
157+
{ECPGdisconnect(__LINE__,"nonexistent");}
158158
#line 73 "test5.pgc"
159159

160160

‎src/interfaces/ecpg/test/expected/connect-test5.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,5 @@
8888
[NO_PID]: sqlca: code: 0, state: 00000
8989
[NO_PID]: ecpg_finish: connection main closed
9090
[NO_PID]: sqlca: code: 0, state: 00000
91-
[NO_PID]: raising sqlcode -220 on line 73: connection "nonexistant" does not exist on line 73
91+
[NO_PID]: raising sqlcode -220 on line 73: connection "nonexistent" does not exist on line 73
9292
[NO_PID]: sqlca: code: -220, state: 08003

‎src/interfaces/ecpg/test/expected/preproc-whenever.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ if (sqlca.sqlcode < 0) sqlprint();}
103103
#line 37 "whenever.pgc"
104104

105105

106-
{ECPGdo(__LINE__,0,1,NULL,0,ECPGst_normal,"select * fromnonexistant",ECPGt_EOIT,
106+
{ECPGdo(__LINE__,0,1,NULL,0,ECPGst_normal,"select * fromnonexistent",ECPGt_EOIT,
107107
ECPGt_int,&(i),(long)1,(long)1,sizeof(int),
108108
ECPGt_NO_INDICATOR,NULL ,0L,0L,0L,ECPGt_EORT);
109109
#line 39 "whenever.pgc"
@@ -127,7 +127,7 @@ if (sqlca.sqlcode < 0) sqlprint();}
127127
/* exec sql whenever sqlerror do print ( \"select\" ) ; */
128128
#line 42 "whenever.pgc"
129129

130-
{ECPGdo(__LINE__,0,1,NULL,0,ECPGst_normal,"select * fromnonexistant",ECPGt_EOIT,
130+
{ECPGdo(__LINE__,0,1,NULL,0,ECPGst_normal,"select * fromnonexistent",ECPGt_EOIT,
131131
ECPGt_int,&(i),(long)1,(long)1,sizeof(int),
132132
ECPGt_NO_INDICATOR,NULL ,0L,0L,0L,ECPGt_EORT);
133133
#line 43 "whenever.pgc"
@@ -151,7 +151,7 @@ if (sqlca.sqlcode < 0) print ( "select" );}
151151
/* exec sql whenever sqlerror call print2 ( ) ; */
152152
#line 46 "whenever.pgc"
153153

154-
{ECPGdo(__LINE__,0,1,NULL,0,ECPGst_normal,"select * fromnonexistant",ECPGt_EOIT,
154+
{ECPGdo(__LINE__,0,1,NULL,0,ECPGst_normal,"select * fromnonexistent",ECPGt_EOIT,
155155
ECPGt_int,&(i),(long)1,(long)1,sizeof(int),
156156
ECPGt_NO_INDICATOR,NULL ,0L,0L,0L,ECPGt_EORT);
157157
#line 47 "whenever.pgc"
@@ -175,7 +175,7 @@ if (sqlca.sqlcode < 0) print2 ( );}
175175
/* exec sql whenever sqlerror continue ; */
176176
#line 50 "whenever.pgc"
177177

178-
{ECPGdo(__LINE__,0,1,NULL,0,ECPGst_normal,"select * fromnonexistant",ECPGt_EOIT,
178+
{ECPGdo(__LINE__,0,1,NULL,0,ECPGst_normal,"select * fromnonexistent",ECPGt_EOIT,
179179
ECPGt_int,&(i),(long)1,(long)1,sizeof(int),
180180
ECPGt_NO_INDICATOR,NULL ,0L,0L,0L,ECPGt_EORT);
181181
#line 51 "whenever.pgc"
@@ -193,7 +193,7 @@ if (sqlca.sqlwarn[0] == 'W') warn ( );}
193193
/* exec sql whenever sqlerror goto error ; */
194194
#line 54 "whenever.pgc"
195195

196-
{ECPGdo(__LINE__,0,1,NULL,0,ECPGst_normal,"select * fromnonexistant",ECPGt_EOIT,
196+
{ECPGdo(__LINE__,0,1,NULL,0,ECPGst_normal,"select * fromnonexistent",ECPGt_EOIT,
197197
ECPGt_int,&(i),(long)1,(long)1,sizeof(int),
198198
ECPGt_NO_INDICATOR,NULL ,0L,0L,0L,ECPGt_EORT);
199199
#line 55 "whenever.pgc"

‎src/interfaces/ecpg/test/expected/preproc-whenever.stderr

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -27,68 +27,68 @@
2727
Warning: At least one column was truncated
2828
[NO_PID]: ECPGtrans on line 37: action "rollback"; connection "ecpg1_regression"
2929
[NO_PID]: sqlca: code: 0, state: 00000
30-
[NO_PID]: ecpg_execute on line 39: query: select * fromnonexistant; with 0 parameter(s) on connection ecpg1_regression
30+
[NO_PID]: ecpg_execute on line 39: query: select * fromnonexistent; with 0 parameter(s) on connection ecpg1_regression
3131
[NO_PID]: sqlca: code: 0, state: 00000
3232
[NO_PID]: ecpg_execute on line 39: using PQexec
3333
[NO_PID]: sqlca: code: 0, state: 00000
34-
[NO_PID]: ecpg_check_PQresult on line 39: bad response - ERROR: relation "nonexistant" does not exist
35-
LINE 1: select * fromnonexistant
34+
[NO_PID]: ecpg_check_PQresult on line 39: bad response - ERROR: relation "nonexistent" does not exist
35+
LINE 1: select * fromnonexistent
3636
^
3737
[NO_PID]: sqlca: code: 0, state: 00000
38-
[NO_PID]: raising sqlstate 42P01 (sqlcode -400): relation "nonexistant" does not exist on line 39
38+
[NO_PID]: raising sqlstate 42P01 (sqlcode -400): relation "nonexistent" does not exist on line 39
3939
[NO_PID]: sqlca: code: -400, state: 42P01
40-
SQL error: relation "nonexistant" does not exist on line 39
40+
SQL error: relation "nonexistent" does not exist on line 39
4141
[NO_PID]: ECPGtrans on line 40: action "rollback"; connection "ecpg1_regression"
4242
[NO_PID]: sqlca: code: 0, state: 00000
43-
[NO_PID]: ecpg_execute on line 43: query: select * fromnonexistant; with 0 parameter(s) on connection ecpg1_regression
43+
[NO_PID]: ecpg_execute on line 43: query: select * fromnonexistent; with 0 parameter(s) on connection ecpg1_regression
4444
[NO_PID]: sqlca: code: 0, state: 00000
4545
[NO_PID]: ecpg_execute on line 43: using PQexec
4646
[NO_PID]: sqlca: code: 0, state: 00000
47-
[NO_PID]: ecpg_check_PQresult on line 43: bad response - ERROR: relation "nonexistant" does not exist
48-
LINE 1: select * fromnonexistant
47+
[NO_PID]: ecpg_check_PQresult on line 43: bad response - ERROR: relation "nonexistent" does not exist
48+
LINE 1: select * fromnonexistent
4949
^
5050
[NO_PID]: sqlca: code: 0, state: 00000
51-
[NO_PID]: raising sqlstate 42P01 (sqlcode -400): relation "nonexistant" does not exist on line 43
51+
[NO_PID]: raising sqlstate 42P01 (sqlcode -400): relation "nonexistent" does not exist on line 43
5252
[NO_PID]: sqlca: code: -400, state: 42P01
5353
Error in statement 'select':
54-
SQL error: relation "nonexistant" does not exist on line 43
54+
SQL error: relation "nonexistent" does not exist on line 43
5555
[NO_PID]: ECPGtrans on line 44: action "rollback"; connection "ecpg1_regression"
5656
[NO_PID]: sqlca: code: 0, state: 00000
57-
[NO_PID]: ecpg_execute on line 47: query: select * fromnonexistant; with 0 parameter(s) on connection ecpg1_regression
57+
[NO_PID]: ecpg_execute on line 47: query: select * fromnonexistent; with 0 parameter(s) on connection ecpg1_regression
5858
[NO_PID]: sqlca: code: 0, state: 00000
5959
[NO_PID]: ecpg_execute on line 47: using PQexec
6060
[NO_PID]: sqlca: code: 0, state: 00000
61-
[NO_PID]: ecpg_check_PQresult on line 47: bad response - ERROR: relation "nonexistant" does not exist
62-
LINE 1: select * fromnonexistant
61+
[NO_PID]: ecpg_check_PQresult on line 47: bad response - ERROR: relation "nonexistent" does not exist
62+
LINE 1: select * fromnonexistent
6363
^
6464
[NO_PID]: sqlca: code: 0, state: 00000
65-
[NO_PID]: raising sqlstate 42P01 (sqlcode -400): relation "nonexistant" does not exist on line 47
65+
[NO_PID]: raising sqlstate 42P01 (sqlcode -400): relation "nonexistent" does not exist on line 47
6666
[NO_PID]: sqlca: code: -400, state: 42P01
6767
Found another error
68-
SQL error: relation "nonexistant" does not exist on line 47
68+
SQL error: relation "nonexistent" does not exist on line 47
6969
[NO_PID]: ECPGtrans on line 48: action "rollback"; connection "ecpg1_regression"
7070
[NO_PID]: sqlca: code: 0, state: 00000
71-
[NO_PID]: ecpg_execute on line 51: query: select * fromnonexistant; with 0 parameter(s) on connection ecpg1_regression
71+
[NO_PID]: ecpg_execute on line 51: query: select * fromnonexistent; with 0 parameter(s) on connection ecpg1_regression
7272
[NO_PID]: sqlca: code: 0, state: 00000
7373
[NO_PID]: ecpg_execute on line 51: using PQexec
7474
[NO_PID]: sqlca: code: 0, state: 00000
75-
[NO_PID]: ecpg_check_PQresult on line 51: bad response - ERROR: relation "nonexistant" does not exist
76-
LINE 1: select * fromnonexistant
75+
[NO_PID]: ecpg_check_PQresult on line 51: bad response - ERROR: relation "nonexistent" does not exist
76+
LINE 1: select * fromnonexistent
7777
^
7878
[NO_PID]: sqlca: code: 0, state: 00000
79-
[NO_PID]: raising sqlstate 42P01 (sqlcode -400): relation "nonexistant" does not exist on line 51
79+
[NO_PID]: raising sqlstate 42P01 (sqlcode -400): relation "nonexistent" does not exist on line 51
8080
[NO_PID]: sqlca: code: -400, state: 42P01
8181
[NO_PID]: ECPGtrans on line 52: action "rollback"; connection "ecpg1_regression"
8282
[NO_PID]: sqlca: code: 0, state: 00000
83-
[NO_PID]: ecpg_execute on line 55: query: select * fromnonexistant; with 0 parameter(s) on connection ecpg1_regression
83+
[NO_PID]: ecpg_execute on line 55: query: select * fromnonexistent; with 0 parameter(s) on connection ecpg1_regression
8484
[NO_PID]: sqlca: code: 0, state: 00000
8585
[NO_PID]: ecpg_execute on line 55: using PQexec
8686
[NO_PID]: sqlca: code: 0, state: 00000
87-
[NO_PID]: ecpg_check_PQresult on line 55: bad response - ERROR: relation "nonexistant" does not exist
88-
LINE 1: select * fromnonexistant
87+
[NO_PID]: ecpg_check_PQresult on line 55: bad response - ERROR: relation "nonexistent" does not exist
88+
LINE 1: select * fromnonexistent
8989
^
9090
[NO_PID]: sqlca: code: 0, state: 00000
91-
[NO_PID]: raising sqlstate 42P01 (sqlcode -400): relation "nonexistant" does not exist on line 55
91+
[NO_PID]: raising sqlstate 42P01 (sqlcode -400): relation "nonexistent" does not exist on line 55
9292
[NO_PID]: sqlca: code: -400, state: 42P01
9393
[NO_PID]: ECPGtrans on line 59: action "rollback"; connection "ecpg1_regression"
9494
[NO_PID]: sqlca: code: 0, state: 00000

‎src/interfaces/ecpg/test/preproc/whenever.pgc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,23 @@ int main(void)
3636
exec sql select * into :i, :c from test;
3737
exec sql rollback;
3838

39-
exec sql select * into :i fromnonexistant;
39+
exec sql select * into :i fromnonexistent;
4040
exec sql rollback;
4141

4242
exec sql whenever sqlerror do print("select");
43-
exec sql select * into :i fromnonexistant;
43+
exec sql select * into :i fromnonexistent;
4444
exec sql rollback;
4545

4646
exec sql whenever sqlerror call print2();
47-
exec sql select * into :i fromnonexistant;
47+
exec sql select * into :i fromnonexistent;
4848
exec sql rollback;
4949

5050
exec sql whenever sqlerror continue;
51-
exec sql select * into :i fromnonexistant;
51+
exec sql select * into :i fromnonexistent;
5252
exec sql rollback;
5353

5454
exec sql whenever sqlerror goto error;
55-
exec sql select * into :i fromnonexistant;
55+
exec sql select * into :i fromnonexistent;
5656
printf("Should not be reachable\n");
5757

5858
error:

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1349,7 +1349,7 @@ delete from atacc1;
13491349
-- try dropping a non-existent column, should fail
13501350
alter table atacc1 drop bar;
13511351
ERROR: column "bar" of relation "atacc1" does not exist
1352-
-- try removing an oid column, should succeed (as it'snonexistant)
1352+
-- try removing an oid column, should succeed (as it'snonexistent)
13531353
alter table atacc1 SET WITHOUT OIDS;
13541354
-- try adding an oid column, should fail (not supported)
13551355
alter table atacc1 SET WITH OIDS;
@@ -3432,8 +3432,8 @@ LINE 1: ...list_parted ATTACH PARTITION fail_part FOR VALUES FROM (1) T...
34323432
^
34333433
DROP TABLE fail_part;
34343434
-- check that the table being attached exists
3435-
ALTER TABLE list_parted ATTACH PARTITIONnonexistant FOR VALUES IN (1);
3436-
ERROR: relation "nonexistant" does not exist
3435+
ALTER TABLE list_parted ATTACH PARTITIONnonexistent FOR VALUES IN (1);
3436+
ERROR: relation "nonexistent" does not exist
34373437
-- check ownership of the source table
34383438
CREATE ROLE regress_test_me;
34393439
CREATE ROLE regress_test_not_me;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ NOTICE: drop cascades to index grect2ind2
111111
SET default_table_access_method = '';
112112
ERROR: invalid value for parameter "default_table_access_method": ""
113113
DETAIL: default_table_access_method cannot be empty.
114-
-- preventnonexistant values
114+
-- preventnonexistent values
115115
SET default_table_access_method = 'I do not exist AM';
116116
ERROR: invalid value for parameter "default_table_access_method": "I do not exist AM"
117117
DETAIL: Table access method "I do not exist AM" does not exist.
@@ -274,7 +274,7 @@ ORDER BY 3, 1, 2;
274274

275275
-- don't want to keep those tables, nor the default
276276
ROLLBACK;
277-
-- Third, check that we can neither create a table using anonexistant
277+
-- Third, check that we can neither create a table using anonexistent
278278
-- AM, nor using an index AM
279279
CREATE TABLE i_am_a_failure() USING "";
280280
ERROR: zero-length delimited identifier at or near """"

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1197,9 +1197,9 @@ ERROR: column "ctid" not found in data type compositetable
11971197
LINE 1: SELECT (d).ctid FROM (SELECT compositetable AS d FROM compos...
11981198
^
11991199
-- accessing non-existing column in NULL datum errors out
1200-
SELECT (NULL::compositetable).nonexistant;
1201-
ERROR: column "nonexistant" not found in data type compositetable
1202-
LINE 1: SELECT (NULL::compositetable).nonexistant;
1200+
SELECT (NULL::compositetable).nonexistent;
1201+
ERROR: column "nonexistent" not found in data type compositetable
1202+
LINE 1: SELECT (NULL::compositetable).nonexistent;
12031203
^
12041204
-- existing column in a NULL composite yield NULL
12051205
SELECT (NULL::compositetable).a;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ CREATE STATISTICS tst FROM sometab;
3535
ERROR: syntax error at or near "FROM"
3636
LINE 1: CREATE STATISTICS tst FROM sometab;
3737
^
38-
CREATE STATISTICS tst ON a, b FROMnonexistant;
39-
ERROR: relation "nonexistant" does not exist
38+
CREATE STATISTICS tst ON a, b FROMnonexistent;
39+
ERROR: relation "nonexistent" does not exist
4040
CREATE STATISTICS tst ON a, b FROM pg_class;
4141
ERROR: column "a" does not exist
4242
CREATE STATISTICS tst ON relname, relname, relnatts FROM pg_class;

‎src/test/regress/sql/alter_table.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ delete from atacc1;
973973
-- try dropping a non-existent column, should fail
974974
altertable atacc1 drop bar;
975975

976-
-- try removing an oid column, should succeed (as it'snonexistant)
976+
-- try removing an oid column, should succeed (as it'snonexistent)
977977
altertable atacc1SET WITHOUT OIDS;
978978

979979
-- try adding an oid column, should fail (not supported)
@@ -2152,7 +2152,7 @@ ALTER TABLE list_parted ATTACH PARTITION fail_part FOR VALUES FROM (1) TO (10);
21522152
DROPTABLE fail_part;
21532153

21542154
-- check that the table being attached exists
2155-
ALTERTABLE list_parted ATTACH PARTITIONnonexistant FORVALUESIN (1);
2155+
ALTERTABLE list_parted ATTACH PARTITIONnonexistent FORVALUESIN (1);
21562156

21572157
-- check ownership of the source table
21582158
CREATE ROLE regress_test_me;

‎src/test/regress/sql/create_am.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ DROP ACCESS METHOD gist2 CASCADE;
8080
-- prevent empty values
8181
SET default_table_access_method='';
8282

83-
-- preventnonexistant values
83+
-- preventnonexistent values
8484
SET default_table_access_method='I do not exist AM';
8585

8686
-- prevent setting it to an index AM
@@ -198,7 +198,7 @@ ORDER BY 3, 1, 2;
198198
-- don't want to keep those tables, nor the default
199199
ROLLBACK;
200200

201-
-- Third, check that we can neither create a table using anonexistant
201+
-- Third, check that we can neither create a table using anonexistent
202202
-- AM, nor using an index AM
203203
CREATETABLEi_am_a_failure() USING"";
204204
CREATETABLEi_am_a_failure() USING i_do_not_exist_am;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp