postgresql/src/bin/psql/command.h

45 lines
1.1 KiB
C
Raw Normal View History

2000-01-19 00:30:24 +01:00
/*
* psql - the PostgreSQL interactive terminal
*
2005-01-01 06:43:09 +01:00
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
2000-01-19 00:30:24 +01:00
*
2005-01-01 06:43:09 +01:00
* $PostgreSQL: pgsql/src/bin/psql/command.h,v 1.22 2005/01/01 05:43:08 momjian Exp $
2000-01-19 00:30:24 +01:00
*/
#ifndef COMMAND_H
#define COMMAND_H
#include "settings.h"
#include "print.h"
#include "psqlscan.h"
1999-11-05 00:14:30 +01:00
typedef enum _backslashResult
{
CMD_UNKNOWN = 0, /* not done parsing yet (internal only) */
CMD_SEND, /* query complete; send off */
CMD_SKIP_LINE, /* keep building query */
CMD_TERMINATE, /* quit program */
CMD_NEWEDIT, /* query buffer was changed (e.g., via \e) */
CMD_ERROR /* the execution of the backslash command
1999-11-05 00:14:30 +01:00
* resulted in an error */
} backslashResult;
1999-11-05 00:14:30 +01:00
extern backslashResult HandleSlashCmds(PsqlScanState scan_state,
2004-08-29 07:07:03 +02:00
PQExpBuffer query_buf);
1999-11-05 00:14:30 +01:00
extern int process_file(char *filename);
1999-11-05 00:14:30 +01:00
extern bool do_pset(const char *param,
1999-11-05 00:14:30 +01:00
const char *value,
printQueryOpt *popt,
1999-11-05 00:14:30 +01:00
bool quiet);
extern void SyncVariables(void);
extern void UnsyncVariables(void);
extern void SyncVerbosityVariable(void);
#endif /* COMMAND_H */