Comment 3 for bug 1251691

Revision history for this message
Ovais Tariq (ovais-tariq) wrote :

Sample PHP code to run the test:

[root@ovaistariq-test master]# cat test.php
#!/usr/bin/php
<?php
$m=new mysqli('127.0.0.1', 'msandbox', 'msandbox', 'test', 23389);
$m->multi_query("INSERT DELAYED INTO test.log_messages (time_stamp, message, url, hash) VALUES(CURRENT_TIMESTAMP, 'test_msg_1', 'test_url_1', '0bee89b07a248e27c83fc3d5951213c1');INSERT DELAYED INTO test.log_messages (time_stamp, message, url, hash) VALUES(CURRENT_TIMESTAMP, 'test_msg_2', 'test_url_2', 'b6273b589df2dfdbd8fe35b1011e3183')");
print_r($m);