1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-10 14:22:35 +03:00

Code review for psql multiline history patch(es). Fix memory leak,

failure to enter commands in history if canceled by control-C, other
infelicities.
This commit is contained in:
Tom Lane
2006-06-11 23:06:00 +00:00
parent bf64a37909
commit e2e2a9db4c
7 changed files with 138 additions and 167 deletions

View File

@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/prompt.c,v 1.44 2006/04/19 16:02:17 tgl Exp $
* $PostgreSQL: pgsql/src/bin/psql/prompt.c,v 1.45 2006/06/11 23:06:00 tgl Exp $
*/
#include "postgres_fe.h"
#include "prompt.h"
@@ -12,7 +12,6 @@
#include "settings.h"
#include "common.h"
#include "pqexpbuffer.h"
#include "input.h"
#include "variables.h"