mirror of
https://github.com/postgres/postgres.git
synced 2025-08-25 20:23:07 +03:00
Fix inconsistencies and typos in the tree, take 9
This addresses more issues with code comments, variable names and unreferenced variables. Author: Alexander Lakhin Discussion: https://postgr.es/m/7ab243e0-116d-3e44-d120-76b3df7abefd@gmail.com
This commit is contained in:
@@ -2062,8 +2062,9 @@ ecpg_do_prologue(int lineno, const int compat, const int force_indicator,
|
||||
/*------
|
||||
* create a list of variables
|
||||
*
|
||||
* The variables are listed with input variables preceding outputvariables
|
||||
* The end of each group is marked by an end marker. per variable we list:
|
||||
* The variables are listed with input variables preceding output
|
||||
* variables. The end of each group is marked by an end marker.
|
||||
* Per variable we list:
|
||||
*
|
||||
* type - as defined in ecpgtype.h
|
||||
* value - where to store the data
|
||||
|
@@ -623,7 +623,7 @@ PGTYPESdate_defmt_asc(date * d, const char *fmt, const char *str)
|
||||
|
||||
/*
|
||||
* evil[tm] hack: if we read the pgtypes_date_months and haven't
|
||||
* found a match, reset list to point to pgtypes_date_months_short
|
||||
* found a match, reset list to point to months (abbreviations)
|
||||
* and reset the counter variable i
|
||||
*/
|
||||
if (list == pgtypes_date_months)
|
||||
|
@@ -3732,8 +3732,8 @@ internal_ping(PGconn *conn)
|
||||
* PQPING_NO_RESPONSE. This result could be somewhat misleading for a
|
||||
* pre-7.4 server, since it won't send back a SQLSTATE, but those are long
|
||||
* out of support. Another corner case where the server could return a
|
||||
* failure without a SQLSTATE is fork failure, but NO_RESPONSE isn't
|
||||
* totally unreasonable for that anyway. We expect that every other
|
||||
* failure without a SQLSTATE is fork failure, but PQPING_NO_RESPONSE
|
||||
* isn't totally unreasonable for that anyway. We expect that every other
|
||||
* failure case in a modern server will produce a report with a SQLSTATE.
|
||||
*
|
||||
* NOTE: whenever we get around to making libpq generate SQLSTATEs for
|
||||
|
@@ -3291,7 +3291,7 @@ PQflush(PGconn *conn)
|
||||
* PQfreemem - safely frees memory allocated
|
||||
*
|
||||
* Needed mostly by Win32, unless multithreaded DLL (/MD in VC6)
|
||||
* Used for freeing memory from PQescapeByte()a/PQunescapeBytea()
|
||||
* Used for freeing memory from PQescapeBytea()/PQunescapeBytea()
|
||||
*/
|
||||
void
|
||||
PQfreemem(void *ptr)
|
||||
|
@@ -7,7 +7,7 @@
|
||||
* miscellaneous useful functions
|
||||
*
|
||||
* The communication routines here are analogous to the ones in
|
||||
* backend/libpq/pqcomm.c and backend/libpq/pqcomprim.c, but operate
|
||||
* backend/libpq/pqcomm.c and backend/libpq/pqformat.c, but operate
|
||||
* in the considerably different environment of the frontend libpq.
|
||||
* In particular, we work with a bare nonblock-mode socket, rather than
|
||||
* a stdio stream, so that we can avoid unwanted blocking of the application.
|
||||
|
@@ -565,10 +565,10 @@ extern void PQdisplayTuples(const PGresult *res,
|
||||
|
||||
extern void PQprintTuples(const PGresult *res,
|
||||
FILE *fout, /* output stream */
|
||||
int printAttName, /* print attribute names */
|
||||
int terseOutput, /* delimiter bars */
|
||||
int width); /* width of column, if 0, use variable
|
||||
* width */
|
||||
int PrintAttNames, /* print attribute names */
|
||||
int TerseOutput, /* delimiter bars */
|
||||
int colWidth); /* width of column, if 0, use
|
||||
* variable width */
|
||||
|
||||
|
||||
/* === in fe-lobj.c === */
|
||||
|
@@ -169,7 +169,7 @@ struct pg_result
|
||||
int ntups;
|
||||
int numAttributes;
|
||||
PGresAttDesc *attDescs;
|
||||
PGresAttValue **tuples; /* each PGresTuple is an array of
|
||||
PGresAttValue **tuples; /* each PGresult tuple is an array of
|
||||
* PGresAttValue's */
|
||||
int tupArrSize; /* allocated size of tuples array */
|
||||
int numParameters;
|
||||
@@ -232,7 +232,8 @@ typedef enum
|
||||
PGQUERY_DESCRIBE /* Describe Statement or Portal */
|
||||
} PGQueryClass;
|
||||
|
||||
/* PGSetenvStatusType defines the state of the PQSetenv state machine */
|
||||
/* PGSetenvStatusType defines the state of the pqSetenv state machine */
|
||||
|
||||
/* (this is used only for 2.0-protocol connections) */
|
||||
typedef enum
|
||||
{
|
||||
|
Reference in New Issue
Block a user