Commit b0e54684 authored by Bruce Momjian's avatar Bruce Momjian

Remove unnecessary copyObject() call in update (values) code.

parent 18f2e035
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.562 2006/09/02 20:52:01 momjian Exp $ * $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.563 2006/09/03 00:46:41 momjian Exp $
* *
* HISTORY * HISTORY
* AUTHOR DATE MAJOR EVENT * AUTHOR DATE MAJOR EVENT
...@@ -5974,7 +5974,7 @@ update_target_lists_el: ...@@ -5974,7 +5974,7 @@ update_target_lists_el:
ResTarget *res_col = (ResTarget *) lfirst(col_cell); ResTarget *res_col = (ResTarget *) lfirst(col_cell);
Node *res_val = (Node *) lfirst(val_cell); Node *res_val = (Node *) lfirst(val_cell);
res_col->val = (Node *)copyObject(res_val); res_col->val = res_val;
} }
$$ = $2; $$ = $2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment