mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
Various cleanups from D'Arcy
This commit is contained in:
@ -10,7 +10,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.14 1996/11/08 20:45:33 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.15 1996/11/11 12:14:09 scrappy Exp $
|
||||||
*
|
*
|
||||||
* HISTORY
|
* HISTORY
|
||||||
* AUTHOR DATE MAJOR EVENT
|
* AUTHOR DATE MAJOR EVENT
|
||||||
@ -56,8 +56,6 @@ extern List *parsetree;
|
|||||||
*/
|
*/
|
||||||
/*#define __YYSCLASS*/
|
/*#define __YYSCLASS*/
|
||||||
|
|
||||||
extern void yyerror(char message[]);
|
|
||||||
|
|
||||||
static char *xlateSqlType(char *);
|
static char *xlateSqlType(char *);
|
||||||
static Node *makeA_Expr(int op, char *opname, Node *lexpr, Node *rexpr);
|
static Node *makeA_Expr(int op, char *opname, Node *lexpr, Node *rexpr);
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/rlstubs.c,v 1.3 1996/11/11 05:55:32 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/rlstubs.c,v 1.4 1996/11/11 12:14:21 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -15,8 +15,13 @@
|
|||||||
|
|
||||||
#include "rlstubs.h"
|
#include "rlstubs.h"
|
||||||
|
|
||||||
|
extern char *readline(const char *);
|
||||||
|
extern int write_history(const char *);
|
||||||
|
extern int using_history(void);
|
||||||
|
extern int add_history(const char *);
|
||||||
|
|
||||||
char *
|
char *
|
||||||
readline(char *prompt)
|
readline(const char *prompt)
|
||||||
{
|
{
|
||||||
static char buf[500];
|
static char buf[500];
|
||||||
|
|
||||||
|
@ -9,14 +9,18 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.4 1996/11/09 10:39:40 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.5 1996/11/11 12:14:38 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "postgres.h"
|
||||||
#include "tcl.h"
|
#include "tcl.h"
|
||||||
#include "libpgtcl.h"
|
#include "libpgtcl.h"
|
||||||
#include "pgtclCmds.h"
|
#include "pgtclCmds.h"
|
||||||
|
#include "pgtclId.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Pgtcl_Init
|
* Pgtcl_Init
|
||||||
@ -27,7 +31,7 @@
|
|||||||
/*
|
/*
|
||||||
* Tidy up forgotten postgres connection at Tcl_Exit
|
* Tidy up forgotten postgres connection at Tcl_Exit
|
||||||
*/
|
*/
|
||||||
void
|
static void
|
||||||
Pgtcl_AtExit (ClientData cData)
|
Pgtcl_AtExit (ClientData cData)
|
||||||
{
|
{
|
||||||
Pg_clientData *cd = (Pg_clientData *)cData;
|
Pg_clientData *cd = (Pg_clientData *)cData;
|
||||||
@ -52,7 +56,7 @@ Pgtcl_AtExit (ClientData cData)
|
|||||||
/*
|
/*
|
||||||
* Tidy up forgotten postgres connections on Interpreter deletion
|
* Tidy up forgotten postgres connections on Interpreter deletion
|
||||||
*/
|
*/
|
||||||
void
|
static void
|
||||||
Pgtcl_Shutdown (ClientData cData, Tcl_Interp *interp)
|
Pgtcl_Shutdown (ClientData cData, Tcl_Interp *interp)
|
||||||
{
|
{
|
||||||
Pgtcl_AtExit(cData);
|
Pgtcl_AtExit(cData);
|
||||||
|
@ -7,16 +7,17 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.6 1996/11/09 10:39:41 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.7 1996/11/11 12:14:42 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <tcl.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <tcl.h>
|
||||||
|
|
||||||
|
#include "postgres.h"
|
||||||
#include "libpq/pqcomm.h"
|
#include "libpq/pqcomm.h"
|
||||||
#include "libpq-fe.h"
|
#include "libpq-fe.h"
|
||||||
#include "libpq/libpq-fs.h"
|
#include "libpq/libpq-fs.h"
|
||||||
@ -224,7 +225,7 @@ tcl_value (char *value)
|
|||||||
**********************************/
|
**********************************/
|
||||||
|
|
||||||
int
|
int
|
||||||
Pg_conndefaults(ClientData cData, Tcl_Interp *interp, int argc, char* argv[])
|
Pg_conndefaults(ClientData cData, Tcl_Interp *interp, int argc, char **argv)
|
||||||
{
|
{
|
||||||
PQconninfoOption *option;
|
PQconninfoOption *option;
|
||||||
char buf[8192];
|
char buf[8192];
|
||||||
@ -581,7 +582,7 @@ Pg_result(ClientData cData, Tcl_Interp *interp, int argc, char* argv[])
|
|||||||
Tcl_ResetResult(interp);
|
Tcl_ResetResult(interp);
|
||||||
for (i = 0; i < PQnfields(result); i++) {
|
for (i = 0; i < PQnfields(result); i++) {
|
||||||
sprintf(buf, "{%s} %ld %d", PQfname(result, i),
|
sprintf(buf, "{%s} %ld %d", PQfname(result, i),
|
||||||
PQftype(result, i),
|
(long) PQftype(result, i),
|
||||||
PQfsize(result, i));
|
PQfsize(result, i));
|
||||||
Tcl_AppendElement(interp, buf);
|
Tcl_AppendElement(interp, buf);
|
||||||
}
|
}
|
||||||
@ -1125,7 +1126,7 @@ Pg_select(ClientData cData, Tcl_Interp *interp, int argc, char **argv)
|
|||||||
Pg_clientData *cd = (Pg_clientData *)cData;
|
Pg_clientData *cd = (Pg_clientData *)cData;
|
||||||
PGconn *conn;
|
PGconn *conn;
|
||||||
PGresult *result;
|
PGresult *result;
|
||||||
int ch_flag, r;
|
int r;
|
||||||
size_t tupno, column, ncols;
|
size_t tupno, column, ncols;
|
||||||
Tcl_DString headers;
|
Tcl_DString headers;
|
||||||
struct {
|
struct {
|
||||||
|
@ -12,15 +12,16 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclId.c,v 1.2 1996/10/30 06:18:41 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclId.c,v 1.3 1996/11/11 12:14:45 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "tcl.h"
|
#include <tcl.h>
|
||||||
|
|
||||||
|
#include "postgres.h"
|
||||||
#include "pgtclCmds.h"
|
#include "pgtclCmds.h"
|
||||||
#include "pgtclId.h"
|
#include "pgtclId.h"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user