Example #1
0
 /**
  * @expectedException \ClickHouseDB\DatabaseException
  */
 public function testInsertCSVError()
 {
     $file_data_names = [$this->tmp_path . '_testInsertCSV_clickHouseDB_test.1.data'];
     foreach ($file_data_names as $file_name) {
         $this->create_fake_csv_file($file_name, 2);
     }
     $this->create_table_summing_url_views();
     $this->db->enableHttpCompression(true);
     $stat = $this->db->insertBatchFiles('summing_url_views', $file_data_names, ['event_time', 'site_id', 'views', 'v_00', 'v_55']);
     // --- drop
     foreach ($file_data_names as $file_name) {
         unlink($file_name);
     }
 }