summaryrefslogtreecommitdiff
path: root/modules/field/tests
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-09-27 12:06:35 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-09-27 12:06:35 -0700
commit5dedc4c400ec71e46a9ea641dd18c914b11c1096 (patch)
treeda71658e100676d8d144db9a2c1045c10e5ebe03 /modules/field/tests
parent3eb1c0f675a8930678172fc867e94582189aad26 (diff)
downloadbrdo-5dedc4c400ec71e46a9ea641dd18c914b11c1096.tar.gz
brdo-5dedc4c400ec71e46a9ea641dd18c914b11c1096.tar.bz2
Issue #1226796 by sun, catch, Damien Tournoud: Fixed Not equal operator '!=' is not supported by all databases, must be '<>'.
Diffstat (limited to 'modules/field/tests')
-rw-r--r--modules/field/tests/field_test.storage.inc2
1 files changed, 1 insertions, 1 deletions
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 '>':