Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite0f266a

Browse files
committed
postgresify
1 parentfa4a18a commite0f266a

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

‎contrib/postgres_fdw/postgres_fdw.c

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3290,28 +3290,28 @@ execute_dml_stmt(ForeignScanState *node)
32903290
* Construct array of query parameter values in text format.
32913291
*/
32923292
if (numParams>0)
3293-
{
3293+
//{
32943294
process_query_params(econtext,
32953295
dmstate->param_flinfo,
32963296
dmstate->param_exprs,
32973297
values);
32983298

3299-
/*
3300-
* Notice that we pass NULL for paramTypes, thus forcing the remote server
3301-
* to infer types for all parameters. Since we explicitly cast every
3302-
* parameter (see deparse.c), the "inference" is trivial and will produce
3303-
* the desired result. This allows us to avoid assuming that the remote
3304-
* server has the same OIDs we do for the parameters' types.
3305-
*/
3306-
if (!PQsendQueryParams(dmstate->conn,dmstate->query,numParams,
3307-
NULL,values,NULL,NULL,0))
3308-
pgfdw_report_error(ERROR,NULL,dmstate->conn, false,dmstate->query);
3309-
}
3310-
else
3311-
{
3312-
if (!PQsendQuery(dmstate->conn,dmstate->query))
3313-
pgfdw_report_error(ERROR,NULL,dmstate->conn, false,dmstate->query);
3314-
}
3299+
/*
3300+
* Notice that we pass NULL for paramTypes, thus forcing the remote server
3301+
* to infer types for all parameters. Since we explicitly cast every
3302+
* parameter (see deparse.c), the "inference" is trivial and will produce
3303+
* the desired result. This allows us to avoid assuming that the remote
3304+
* server has the same OIDs we do for the parameters' types.
3305+
*/
3306+
if (!PQsendQueryParams(dmstate->conn,dmstate->query,numParams,
3307+
NULL,values,NULL,NULL,0))
3308+
pgfdw_report_error(ERROR,NULL,dmstate->conn, false,dmstate->query);
3309+
//}
3310+
//else
3311+
//{
3312+
//if (!PQsendQuery(dmstate->conn, dmstate->query))
3313+
//pgfdw_report_error(ERROR, NULL, dmstate->conn, false, dmstate->query);
3314+
//}
33153315

33163316
/*
33173317
* Get the result, and check for success.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp