From 5dedc4c400ec71e46a9ea641dd18c914b11c1096 Mon Sep 17 00:00:00 2001 From: webchick Date: Tue, 27 Sep 2011 12:06:35 -0700 Subject: Issue #1226796 by sun, catch, Damien Tournoud: Fixed Not equal operator '!=' is not supported by all databases, must be '<>'. --- modules/field/tests/field_test.storage.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/field/tests/field_test.storage.inc') diff --git a/modules/field/tests/field_test.storage.inc b/modules/field/tests/field_test.storage.inc index 3ca322dd7..a26af1765 100644 --- a/modules/field/tests/field_test.storage.inc +++ b/modules/field/tests/field_test.storage.inc @@ -282,7 +282,7 @@ function field_test_field_storage_query($field_id, $conditions, $count, &$cursor case '=': $match = $match && $row->{$column} == $value; break; - case '!=': + case '<>': case '<': case '<=': case '>': -- cgit v1.2.3