Skip to content

Commit 8322072

Browse files
committed
Spello SERIALIZED -> SERIALIZABLE in psql tab completion
1 parent 02faee5 commit 8322072

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 2000 by PostgreSQL Global Development Group
55
*
6-
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.18 2000/04/21 03:01:54 tgl Exp $
6+
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.19 2000/05/05 08:44:27 petere Exp $
77
*/
88

99
/*-----------
@@ -531,7 +531,7 @@ psql_completion(char *text, int start, int end)
531531
strcasecmp(prev2_wd, "ISOLATION") == 0 &&
532532
strcasecmp(prev_wd, "LEVEL") == 0)
533533
{
534-
char *my_list[] = {"READ", "SERIALIZED", NULL};
534+
char *my_list[] = {"READ", "SERIALIZABLE", NULL};
535535

536536
COMPLETE_WITH_LIST(my_list);
537537
}

0 commit comments

Comments
 (0)