/** Calling a stored routine with a BLOB larger than max_allowed_packet bytes is not possible.
  *
  * @expectedException RuntimeException
  */
 public function xtest3()
 {
     $this->crc32WithStoredRoutine(1.05 * DataLayer::getMaxAllowedPacket());
 }
Esempio n. 2
0
 /**
  * Test with an array of integers and an empty value.
  *
  * @expectedException RuntimeException
  */
 public function test8c()
 {
     $ids = [false, 1, 2, 3];
     DataLayer::testListOfInt($ids);
 }
Esempio n. 3
0
 /**
  * @expectedException RuntimeException
  */
 public function test1()
 {
     DataLayer::testIllegalQuery();
 }