ZF2-536: In \Zend\Db\Insert, VALUES_MERGE flag from "values" method does not work properly
Description
/**@var \Zend\Db\Insert $insert */
$insert->values(array(
'foo' => 1,
'bar' => 2
)); //INSERT INTO "baz" ("foo", "bar") VALUES ('1', '2')
...
$insert->values(array('qux' => 100), Insert::VALUES_MERGE); //INSERT INTO "baz" ("qux") VALUES ('1', '2', '100')
Comments
Posted by Koen Pieters (koen) on 2012-09-10T13:00:20.000+0000
Sent pull request for this issue: https://github.com/zendframework/zf2/pull/2325
Posted by Ionut Zailic (zailic) on 2012-09-10T16:06:15.000+0000
Good job!
Posted by Ralph Schindler (ralph) on 2012-10-08T20:16:32.000+0000
This issue has been closed on Jira and moved to GitHub for issue tracking. To continue following the resolution of this issues, please visit: https://github.com/zendframework/zf2/issues/2569