projects
/
users
/
rhaas
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02faee5
)
Spello SERIALIZED -> SERIALIZABLE in psql tab completion
author
Peter Eisentraut
<
[email protected]
>
Fri, 5 May 2000 08:44:27 +0000
(08:44 +0000)
committer
Peter Eisentraut
<
[email protected]
>
Fri, 5 May 2000 08:44:27 +0000
(08:44 +0000)
src/bin/psql/tab-complete.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/psql/tab-complete.c
b/src/bin/psql/tab-complete.c
index 6388dfce51f413042fdc97a6f41d408ae7e870b1..7e2b0ab7a8d884a269ebfb9295094ffdb759b8d3 100644
(file)
--- 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.1
8 2000/04/21 03:01:54 tgl
Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.1
9 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", "SERIALIZ
ED
", NULL};
+ char *my_list[] = {"READ", "SERIALIZ
ABLE
", NULL};
COMPLETE_WITH_LIST(my_list);
}