-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Warning: unpack(): Type l: not enough input #35
Comments
Thanks for opening the issue. |
Hi yeh there is no data at all. It is empty and the structure is CREATE TABLE basket ( id uuid, tag text, global_id text, hotel_id int, room_id int, date_from text, date_to text, adults int, number_of_children int, PRIMARY KEY ( (tag, global_id), id, hotel_id, room_id, date_from, date_to) |
It's true, that there are issues with empty fields. Check #33 as well. |
I'm getting the same error, with a very simple query: $data = $database->query('SELECT * FROM "client" WHERE "id" = :id', ['id' => 'a5b9491e-372d-49d9-943c-63d40dcb67f4']); I am getting the data I need, but I get this warning:
|
I've found the cause of this issue. It is introduced in 6f1cae9 Please revert this patch. Until then I have to rely on: "require": {
"evseevnn/php-cassandra-binary": "dev-master#31fa28eb756e5d06470a1e4ae4698d44250231b8"
} |
Hi I just pulled the latest version of dev-master and I now get this error
When I run a pretty simple CQL query
I tried to debug it but got a bit lost in what is going on in there.
The text was updated successfully, but these errors were encountered: