summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2000-05-05 08:44:27 +0000
committerPeter Eisentraut2000-05-05 08:44:27 +0000
commit83220721882e96328bc1167fb7e07bd1d315eeeb (patch)
treec5663e64a8a14f1dce77b38fbf4900f7dad3b71e
parent02faee5eaa0ed93364446f5c186fa6904899dca6 (diff)
Spello SERIALIZED -> SERIALIZABLE in psql tab completion
-rw-r--r--src/bin/psql/tab-complete.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c
index 6388dfce51f..7e2b0ab7a8d 100644
--- a/src/bin/psql/tab-complete.c
+++ b/src/bin/psql/tab-complete.c
@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.18 2000/04/21 03:01:54 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.19 2000/05/05 08:44:27 petere Exp $
*/
/*-----------
@@ -531,7 +531,7 @@ psql_completion(char *text, int start, int end)
strcasecmp(prev2_wd, "ISOLATION") == 0 &&
strcasecmp(prev_wd, "LEVEL") == 0)
{
- char *my_list[] = {"READ", "SERIALIZED", NULL};
+ char *my_list[] = {"READ", "SERIALIZABLE", NULL};
COMPLETE_WITH_LIST(my_list);
}