Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Trivial
-
Resolution: Fixed/Completed
-
Affects Version/s: 3.4.1
-
Fix Version/s: 3.4.2
-
Component/s: Core CiviCRM
-
Labels:None
Description
For some unknown reason i had a view called civicrm_contact_view in my database.
CRM/Logging/Schema.php iterates over all rows returned from
SHOW TABLES LIKE 'civicrm_%';
, which not only returns tables but also views, and then tries to rewrite
the "Create_Table" column result returned from
SHOW CREATE TABLE ...
for each of the SHOW result rows. For views there is no "Create_Table"
result column now but "Create_View" instead