mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
Adjusted psql echoing options (-a and -e)
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
*
|
||||
* Copyright 2000 by PostgreSQL Global Development Group
|
||||
*
|
||||
* $Header: /cvsroot/pgsql/src/bin/psql/variables.c,v 1.5 2000/01/29 16:58:49 petere Exp $
|
||||
* $Header: /cvsroot/pgsql/src/bin/psql/variables.c,v 1.6 2000/02/13 21:45:14 petere Exp $
|
||||
*/
|
||||
#include <c.h>
|
||||
#include "variables.h"
|
||||
@ -111,6 +111,14 @@ SetVariable(VariableSpace space, const char *name, const char *value)
|
||||
|
||||
|
||||
|
||||
bool
|
||||
SetVariableBool(VariableSpace space, const char *name)
|
||||
{
|
||||
return SetVariable(space, name, "");
|
||||
}
|
||||
|
||||
|
||||
|
||||
bool
|
||||
DeleteVariable(VariableSpace space, const char *name)
|
||||
{
|
||||
|
Reference in New Issue
Block a user