diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-01-22 14:20:56 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-01-22 14:20:56 +0000 |
commit | fa5400c0a40eab95499da5a54d8a526593a1f243 (patch) | |
tree | a3f2e20f0822b7cb850d51045c19e4f22cc5acb0 /src/bin/psql/command.c | |
parent | 3f51bdafdca99e7f30c7198c218e66fe009a3dd9 (diff) | |
download | postgresql-fa5400c0a40eab95499da5a54d8a526593a1f243.tar.gz postgresql-fa5400c0a40eab95499da5a54d8a526593a1f243.zip |
added ALTER TABLE DROP COLUMN, early version
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 93be3d946c2..333da8cbc93 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Team * - * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.13 2000/01/18 23:30:22 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.14 2000/01/22 14:20:51 petere Exp $ */ #include <c.h> #include "command.h" @@ -1217,6 +1217,7 @@ process_file(char *filename) pset.inputfile = filename; result = MainLoop(fd); fclose(fd); + pset.inputfile = NULL; return (result == EXIT_SUCCESS); } |