Why the db_query_range function isn't implemented ?

A simple copy paste from Drupal 7 source works fine :

function db_query_range($query, $from, $count, array $args = array(), array $options = array()) {
if (empty($options['target'])) {
$options['target'] = 'default';
}

return Database::getConnection($options['target'])->queryRange($query, $from, $count, $args, $options);
}

Regards.

Comments

mikey_p’s picture

Assigned: Unassigned » mikey_p
Category: feature » bug

Hrm, not sure how I missed that. I'll make sure this makes it into my split script.

mikey_p’s picture

Status: Active » Fixed

Not sure when I committed this, but it's in rc1 now.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.