diff options
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 89ee40a5321..bfbe0a53c5c 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.427 2004/07/31 00:45:36 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.428 2004/08/02 01:30:44 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1488,6 +1488,7 @@ exec_bind_message(StringInfo input_message) params[i].kind = PARAM_NUM; params[i].id = i + 1; + params[i].ptype = ptype; params[i].isnull = isNull; i++; |