8000 Spell DELIMITER correctly, per Seamus Dean. · postgrespro/postgres_cluster@f593dda · GitHub
[go: up one dir, main page]

Skip to content

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

8000
Appearance settings

Commit f593dda

Browse files
committed
Spell DELIMITER correctly, per Seamus Dean.
1 parent 126eaef commit f593dda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/tab-complete.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
55
*
6-
* $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.125 2005/04/21 19:18:13 tgl Exp $
6+
* $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.126 2005/05/04 14:25:24 tgl Exp $
77
*/
88

99
/*----------------------------------------------------------------------
@@ -1029,7 +1029,7 @@ psql_completion(char *text, int start, int end)
10291029
pg_strcasecmp(prev2_wd, "TO") == 0))
10301030
{
10311031
static const char *const list_COPY[] =
1032-
{"BINARY", "OIDS", "DELIMETER", "NULL", "CSV", NULL};
1032+
{"BINARY", "OIDS", "DELIMITER", "NULL", "CSV", NULL};
10331033

10341034
COMPLETE_WITH_LIST(list_COPY);
10351035
}

0 commit comments

Comments
 (0)
0