diff --git a/taxonomy_csv.term.api.inc b/taxonomy_csv.term.api.inc
index a0d58fa..59b8143 100644
--- a/taxonomy_csv.term.api.inc
+++ b/taxonomy_csv.term.api.inc
@@ -72,9 +72,9 @@ function taxonomy_csv_term_find($term, $all_vocabularies = FALSE, $parent_tid =
       $args[':parent'] = $parent_tid;
     }
 
-    $sql .= ' ORDER BY t.tid ASC LIMIT 1';
+    $sql .= ' ORDER BY t.tid ASC';
 
-    $result = db_query($sql, $args)->fetchField();
+    $result = db_query_range($sql, 0, 1, $args)->fetchField();
     if ($result) {
       return taxonomy_term_load($result);
     }
