From 0dbfea39f313fbd24a1754a701a85815229fe262 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 16 Jun 2002 00:09:12 +0000 Subject: Remove KSQO from GUC and move file to _deadcode. --- src/bin/psql/tab-complete.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/bin/psql/tab-complete.c') diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 0d0909faa49..521742ea1dd 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.49 2002/06/15 19:43:47 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.50 2002/06/16 00:09:12 momjian Exp $ */ /*---------------------------------------------------------------------- @@ -226,7 +226,6 @@ psql_completion(char *text, int start, int end) "enable_nestloop", "enable_mergejoin", "enable_hashjoin", - "ksqo", "geqo", "fsync", "server_min_messages", @@ -695,7 +694,7 @@ psql_completion(char *text, int start, int end) COMPLETE_WITH_LIST(my_list); } - else if (strcasecmp(prev2_wd, "GEQO") == 0 || strcasecmp(prev2_wd, "KSQO") == 0) + else if (strcasecmp(prev2_wd, "GEQO") == 0) { char *my_list[] = {"ON", "OFF", "DEFAULT", NULL}; -- cgit v1.2.3