mirror of
https://github.com/postgres/postgres.git
synced 2025-05-30 00:02:11 -04:00
> 1) Fix the problems with the \s command. > When the saveHistory is executed by the \s command we must not do the > conversion \n -> \x01 (per > http://archives.postgresql.org/pgsql-hackers/2006-03/msg00317.php ) > > 2) Fix the handling of Ctrl+C > > Now when you do > wsdb=# select 'your long query here ' > wsdb-# > and press afterwards the CtrlC the line "select 'your long query here '" > will be in the history > > (partly per > http://archives.postgresql.org/pgsql-hackers/2006-03/msg00297.php ) > > 3) Fix the handling of commands with not closed brackets, quotes, double > quotes. (now those commands are not splitted in parts...) > > 4) Fix the behaviour when SINGLELINE mode is used. (before it was almost > broken ;( Sergey E. Koposov
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
/*
|
|
* psql - the PostgreSQL interactive terminal
|
|
*
|
|
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
|
|
*
|
|
* $PostgreSQL: pgsql/src/bin/psql/input.h,v 1.27 2006/03/21 13:38:12 momjian Exp $
|
|
*/
|
|
#ifndef INPUT_H
|
|
#define INPUT_H
|
|
|
|
/*
|
|
* If some other file needs to have access to readline/history, include this
|
|
* file and save yourself all this work.
|
|
*
|
|
* USE_READLINE is the definite pointers regarding existence or not.
|
|
*/
|
|
#ifdef HAVE_LIBREADLINE
|
|
#define USE_READLINE 1
|
|
#if defined(HAVE_READLINE_READLINE_H)
|
|
#include <readline/readline.h>
|
|
#elif defined(HAVE_EDITLINE_READLINE_H)
|
|
#include <editline/readline.h>
|
|
#elif defined(HAVE_READLINE_H)
|
|
#include <readline.h>
|
|
#endif
|
|
#if defined(HAVE_READLINE_HISTORY_H)
|
|
#include <readline/history.h>
|
|
#elif defined(HAVE_EDITLINE_HISTORY_H)
|
|
#include <editline/history.h>
|
|
#elif defined(HAVE_HISTORY_H)
|
|
#include <history.h>
|
|
#endif
|
|
#endif
|
|
|
|
|
|
char *gets_interactive(const char *prompt);
|
|
char *gets_fromFile(FILE *source);
|
|
|
|
void initializeInput(int flags);
|
|
bool saveHistory(char *fname, bool encodeFlag);
|
|
|
|
void pg_append_history(char *s, PQExpBuffer history_buf);
|
|
void pg_clear_history(PQExpBuffer history_buf);
|
|
void pg_write_history(char *s);
|
|
|
|
|
|
#endif /* INPUT_H */
|