[MediaWiki-commits] [Gerrit] CRM-18178 exclude _bak & _backup tables from trigger creation - change (wikimedia...civicrm-core)

2016-04-27 Thread Eileen (Code Review)
Eileen has submitted this change and it was merged.

Change subject: CRM-18178 exclude _bak & _backup tables from trigger creation
..


CRM-18178 exclude _bak & _backup tables from trigger creation

Bug: T131221

Change-Id: Id492beaa5990971be265da425c0b8a37dd313332
---
M CRM/Logging/Schema.php
1 file changed, 3 insertions(+), 0 deletions(-)

Approvals:
  Eileen: Verified; Looks good to me, approved



diff --git a/CRM/Logging/Schema.php b/CRM/Logging/Schema.php
index 2d5ea36..cca99a7 100644
--- a/CRM/Logging/Schema.php
+++ b/CRM/Logging/Schema.php
@@ -137,6 +137,9 @@
 $this->tables = preg_grep('/^civicrm_queue_/', $this->tables, 
PREG_GREP_INVERT);
 $this->tables = preg_grep('/^civicrm_menu/', $this->tables, 
PREG_GREP_INVERT); //CRM-14672
 $this->tables = preg_grep('/_temp_/', $this->tables, PREG_GREP_INVERT);
+// CRM-18178
+$this->tables = preg_grep('/_bak$/', $this->tables, PREG_GREP_INVERT);
+$this->tables = preg_grep('/_backup$/', $this->tables, PREG_GREP_INVERT);
 
 // do not log civicrm_mailing_event* tables, CRM-12300
 $this->tables = preg_grep('/^civicrm_mailing_event_/', $this->tables, 
PREG_GREP_INVERT);

-- 
To view, visit https://gerrit.wikimedia.org/r/285869
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Id492beaa5990971be265da425c0b8a37dd313332
Gerrit-PatchSet: 1
Gerrit-Project: wikimedia/fundraising/civicrm-core
Gerrit-Branch: civi-4.6.9
Gerrit-Owner: Eileen 
Gerrit-Reviewer: Eileen 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] CRM-18178 exclude _bak & _backup tables from trigger creation - change (wikimedia...civicrm-core)

2016-04-27 Thread Eileen (Code Review)
Eileen has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/285869

Change subject: CRM-18178 exclude _bak & _backup tables from trigger creation
..

CRM-18178 exclude _bak & _backup tables from trigger creation

Bug: T131221

Change-Id: Id492beaa5990971be265da425c0b8a37dd313332
---
M CRM/Logging/Schema.php
1 file changed, 3 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/wikimedia/fundraising/civicrm-core 
refs/changes/69/285869/1

diff --git a/CRM/Logging/Schema.php b/CRM/Logging/Schema.php
index 2d5ea36..cca99a7 100644
--- a/CRM/Logging/Schema.php
+++ b/CRM/Logging/Schema.php
@@ -137,6 +137,9 @@
 $this->tables = preg_grep('/^civicrm_queue_/', $this->tables, 
PREG_GREP_INVERT);
 $this->tables = preg_grep('/^civicrm_menu/', $this->tables, 
PREG_GREP_INVERT); //CRM-14672
 $this->tables = preg_grep('/_temp_/', $this->tables, PREG_GREP_INVERT);
+// CRM-18178
+$this->tables = preg_grep('/_bak$/', $this->tables, PREG_GREP_INVERT);
+$this->tables = preg_grep('/_backup$/', $this->tables, PREG_GREP_INVERT);
 
 // do not log civicrm_mailing_event* tables, CRM-12300
 $this->tables = preg_grep('/^civicrm_mailing_event_/', $this->tables, 
PREG_GREP_INVERT);

-- 
To view, visit https://gerrit.wikimedia.org/r/285869
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id492beaa5990971be265da425c0b8a37dd313332
Gerrit-PatchSet: 1
Gerrit-Project: wikimedia/fundraising/civicrm-core
Gerrit-Branch: civi-4.6.9
Gerrit-Owner: Eileen 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] CRM-18178 exclude _bak & _backup tables from trigger creation - change (wikimedia...civicrm)

2016-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: CRM-18178 exclude _bak & _backup tables from trigger creation
..


CRM-18178 exclude _bak & _backup tables from trigger creation

Bug: T131221

Change-Id: Id492beaa5990971be265da425c0b8a37dd313332
---
M CRM/Logging/Schema.php
1 file changed, 3 insertions(+), 0 deletions(-)

Approvals:
  Awight: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/CRM/Logging/Schema.php b/CRM/Logging/Schema.php
index d920d11..7455961 100644
--- a/CRM/Logging/Schema.php
+++ b/CRM/Logging/Schema.php
@@ -135,6 +135,9 @@
 $this->tables = preg_grep('/^civicrm_queue_/', $this->tables, 
PREG_GREP_INVERT);
 $this->tables = preg_grep('/^civicrm_menu/', $this->tables, 
PREG_GREP_INVERT); //CRM-14672
 $this->tables = preg_grep('/_temp_/', $this->tables, PREG_GREP_INVERT);
+// CRM-18178
+$this->tables = preg_grep('/_bak$/', $this->tables, PREG_GREP_INVERT);
+$this->tables = preg_grep('/_backup$/', $this->tables, PREG_GREP_INVERT);
 
 // do not log civicrm_mailing_event* tables, CRM-12300
 $this->tables = preg_grep('/^civicrm_mailing_event_/', $this->tables, 
PREG_GREP_INVERT);

-- 
To view, visit https://gerrit.wikimedia.org/r/277441
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Id492beaa5990971be265da425c0b8a37dd313332
Gerrit-PatchSet: 4
Gerrit-Project: wikimedia/fundraising/crm/civicrm
Gerrit-Branch: master
Gerrit-Owner: Eileen 
Gerrit-Reviewer: Awight 
Gerrit-Reviewer: Ejegg 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] CRM-18178 exclude _bak & _backup tables from trigger creation - change (wikimedia...civicrm)

2016-03-14 Thread Eileen (Code Review)
Eileen has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/277441

Change subject: CRM-18178 exclude _bak & _backup tables from trigger creation
..

CRM-18178 exclude _bak & _backup tables from trigger creation

Change-Id: Id492beaa5990971be265da425c0b8a37dd313332
---
M CRM/Logging/Schema.php
1 file changed, 3 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/wikimedia/fundraising/crm/civicrm 
refs/changes/41/277441/1

diff --git a/CRM/Logging/Schema.php b/CRM/Logging/Schema.php
index 447dce6..d732138 100644
--- a/CRM/Logging/Schema.php
+++ b/CRM/Logging/Schema.php
@@ -77,6 +77,9 @@
 $this->tables = preg_grep('/^civicrm_queue_/', $this->tables, 
PREG_GREP_INVERT);
 $this->tables = preg_grep('/^civicrm_menu/', $this->tables, 
PREG_GREP_INVERT); //CRM-14672
 $this->tables = preg_grep('/_temp_/', $this->tables, PREG_GREP_INVERT);
+// CRM-18178
+$this->tables = preg_grep('/_bak$/', $this->tables, PREG_GREP_INVERT);
+$this->tables = preg_grep('/_backup$/', $this->tables, PREG_GREP_INVERT);
 
 // do not log civicrm_mailing_event* tables, CRM-12300
 $this->tables = preg_grep('/^civicrm_mailing_event_/', $this->tables, 
PREG_GREP_INVERT);

-- 
To view, visit https://gerrit.wikimedia.org/r/277441
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id492beaa5990971be265da425c0b8a37dd313332
Gerrit-PatchSet: 1
Gerrit-Project: wikimedia/fundraising/crm/civicrm
Gerrit-Branch: master
Gerrit-Owner: Eileen 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits