loretoparisi
unread,Sep 2, 2010, 9:07:08 AM9/2/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pandra-dev
Hi found that on line 146 of Query.class.php:
$preResult = PandraCore::getCFSliceMulti($this->_keySpace, $this-
>_keys, $this->_columnFamily);
PandraCore::getCFSliceMulti()
is called in the wrong way, since the third parameter should be a
cassandra_ColumnParent, also the fourth parm should be a
SlicePredicate.
Finally it will be something like the following code:
$preResult = PandraCore::getCFSliceMulti($this->_keySpace, $this-
>_keys,
new cassandra_ColumnParent(array(
'column_family' => $this->_columnFamily,
)),
$predicate
);
Anyway, I didn't realize which predicate to apply :(