From dd3ad894bea7ade5b4a5dd45a0f1bb4b1570276d Mon Sep 17 00:00:00 2001 From: Rene Krenn Date: Mon, 21 Oct 2019 01:25:06 +0200 Subject: [PATCH] TT#67109 TT#63655 remove debug limit Change-Id: I7b99fbb13feed2d11ca37b863ca2b6aa006cf5be --- lib/NGCP/BulkProcessor/Dao/mr341/billing/contracts.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/NGCP/BulkProcessor/Dao/mr341/billing/contracts.pm b/lib/NGCP/BulkProcessor/Dao/mr341/billing/contracts.pm index 9991333..14b7d80 100644 --- a/lib/NGCP/BulkProcessor/Dao/mr341/billing/contracts.pm +++ b/lib/NGCP/BulkProcessor/Dao/mr341/billing/contracts.pm @@ -288,8 +288,8 @@ sub source_process_records { destroy_reader_dbs_code => $destroy_reader_dbs_code, multithreading => $multithreading, tableprocessing_threads => $numofthreads, - 'select' => 'SELECT * FROM ' . $table . ' WHERE ' . $db->columnidentifier('status') . ' != "' . $TERMINATED_STATE . '" and id = 7185', - 'selectcount' => 'SELECT COUNT(*) FROM ' . $table . ' WHERE ' . $db->columnidentifier('status') . ' != "' . $TERMINATED_STATE . '" and id = 7185', + 'select' => 'SELECT * FROM ' . $table . ' WHERE ' . $db->columnidentifier('status') . ' != "' . $TERMINATED_STATE . '"', # and id = 7185', + 'selectcount' => 'SELECT COUNT(*) FROM ' . $table . ' WHERE ' . $db->columnidentifier('status') . ' != "' . $TERMINATED_STATE . '"', # and id = 7185', ); }