From 7ee90ddd595ab51d76bd95809dbb1bd997096e10 Mon Sep 17 00:00:00 2001
From: Vincent Petry <pvince81@owncloud.com>
Date: Thu, 26 Jun 2014 19:24:46 +0200
Subject: [PATCH] Add missing quotes for Oracle

---
 tests/lib/repair/repairmimetypes.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/lib/repair/repairmimetypes.php b/tests/lib/repair/repairmimetypes.php
index 5c0a36d469..3ed19bd55b 100644
--- a/tests/lib/repair/repairmimetypes.php
+++ b/tests/lib/repair/repairmimetypes.php
@@ -26,7 +26,7 @@ class TestRepairMimeTypes extends PHPUnit_Framework_TestCase {
 
 	public function tearDown() {
 		$this->storage->getCache()->clear();
-		$sql = 'DELETE FROM `*PREFIX*storages` WHERE id = ?';
+		$sql = 'DELETE FROM `*PREFIX*storages` WHERE `id` = ?';
 		\OC_DB::executeAudited($sql, array($this->storage->getId()));
 		$this->clearMimeTypes();
 
@@ -66,7 +66,7 @@ class TestRepairMimeTypes extends PHPUnit_Framework_TestCase {
 	 * if it does not exist.
 	 */
 	private function getMimeTypeIdFromDB($mimeType) {
-		$sql = 'SELECT `id` FROM `*PREFIX*mimetypes` WHERE mimetype = ?';
+		$sql = 'SELECT `id` FROM `*PREFIX*mimetypes` WHERE `mimetype` = ?';
 		$results = \OC_DB::executeAudited($sql, array($mimeType));
 		$result = $results->fetchOne();
 		if ($result) {
-- 
GitLab