summaryrefslogtreecommitdiff
path: root/includes/install.mysqli.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/install.mysqli.inc')
-rw-r--r--includes/install.mysqli.inc24
1 files changed, 1 insertions, 23 deletions
diff --git a/includes/install.mysqli.inc b/includes/install.mysqli.inc
index f1eb23558..1a73ad292 100644
--- a/includes/install.mysqli.inc
+++ b/includes/install.mysqli.inc
@@ -81,28 +81,6 @@ function drupal_test_mysqli($url, &$success) {
$success[] = 'UPDATE';
}
- // Test LOCK.
- $query = 'LOCK TABLES drupal_install_test WRITE';
- $result = mysqli_query($connection, $query);
- if ($error = mysqli_error($connection)) {
- drupal_set_message(st('Failed to lock a test table on your MySQL database server. We tried locking a table with the command %query and MySQL reported the following error: %error.', array('%query' => $query, '%error' => $error)), 'error');
- $err = TRUE;
- }
- else {
- $success[] = 'LOCK';
- }
-
- // Test UNLOCK.
- $query = 'UNLOCK TABLES';
- $result = mysqli_query($connection, $query);
- if ($error = mysqli_error($connection)) {
- drupal_set_message(st('Failed to unlock a test table on your MySQL database server. We tried unlocking a table with the command %query and MySQL reported the following error: %error.', array('%query' => $query, '%error' => $error)), 'error');
- $err = TRUE;
- }
- else {
- $success[] = 'UNLOCK';
- }
-
// Test DELETE.
$query = 'DELETE FROM drupal_install_test';
$result = mysqli_query($connection, $query);
@@ -131,4 +109,4 @@ function drupal_test_mysqli($url, &$success) {
mysqli_close($connection);
return TRUE;
-} \ No newline at end of file
+}