mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
column and tuple numbers should be int not size_t.
This commit is contained in:
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.51 2000/12/03 20:45:39 tgl Exp $
|
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.52 2000/12/29 22:46:37 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -1648,7 +1648,7 @@ Pg_select(ClientData cData, Tcl_Interp *interp, int argc, char **argv)
|
|||||||
PGresult *result;
|
PGresult *result;
|
||||||
int r,
|
int r,
|
||||||
retval;
|
retval;
|
||||||
size_t tupno,
|
int tupno,
|
||||||
column,
|
column,
|
||||||
ncols;
|
ncols;
|
||||||
Tcl_DString headers;
|
Tcl_DString headers;
|
||||||
|
Reference in New Issue
Block a user