Skip to content

Commit b68eb4c

Browse files
committed
Remove log message
1 parent 6327e14 commit b68eb4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sr_plan.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,10 +233,10 @@ PlannedStmt *sr_planner(Query *parse,
233233
}
234234
}
235235
index_endscan(query_index_scan);
236-
236+
237237
if (find_ok)
238238
{
239-
elog(LOG, "Ok we find saved plan.");
239+
elog(DEBUG1, "Saved plan was found");
240240
out_jsonb2 = (Jsonb *)DatumGetPointer(PG_DETOAST_DATUM(search_values[3]));
241241
if (query_params != NULL)
242242
pl_stmt = jsonb_to_node_tree(out_jsonb2, &replace_fake);
@@ -248,7 +248,7 @@ PlannedStmt *sr_planner(Query *parse,
248248
{
249249
bool not_have_duplicate = true;
250250
Datum plan_hash;
251-
251+
252252
pl_stmt = standard_planner(parse, cursorOptions, boundParams);
253253
out_jsonb2 = node_tree_to_jsonb(pl_stmt, 0, false);
254254
plan_hash = DirectFunctionCall1(jsonb_hash, PointerGetDatum(out_jsonb2));

0 commit comments

Comments
 (0)