Remove obsolete method.
authormark burdett <mfburdett@gmail.com>
Wed, 23 Oct 2019 17:13:09 +0000 (10:13 -0700)
committermark burdett <mfburdett@gmail.com>
Wed, 23 Oct 2019 17:13:09 +0000 (10:13 -0700)
CRM/Utils/SQL.php

index 8c7f4c6938545c431fc53fe83670e22084e654c4..d7aab2132bc5307343c9b192c5f0abe4924bd60b 100644 (file)
@@ -119,21 +119,6 @@ class CRM_Utils_SQL {
     return TRUE;
   }
 
-  /**
-   * Is the Database set up to handle acceents.
-   * @warning This function was introduced in attempt to determine the reason why the test getInternationalStrings was failing on ubu1604 but passing on ubu1204-5
-   * This function should not be used as the basis of further work as the reasoning is not perfact and is giving false failures.
-   * @return bool
-   */
-  public static function supportStorageOfAccents() {
-    $charSetDB = CRM_Core_DAO::executeQuery("SHOW VARIABLES LIKE 'character_set_database'")->fetchAll();
-    $charSet = $charSetDB[0]['Value'];
-    if ($charSet == 'utf8') {
-      return TRUE;
-    }
-    return FALSE;
-  }
-
   /**
    * Does the DB version support mutliple locks per
    *