tarantool/tarantool-php

SQL does not support space without format

55pingvin opened this issue · 3 comments

SQL does not support space without format (SQL: select * from "CACHE" where key = laravelc5db41c1b37c1c9a1950d35d375c0bdf1bf5c205 limit 1)

This error has nothing to do with the PHP connector, this is how SQL works in Tarantool in general, you either create spaces using SQL syntax or you create them in Lua, but make sure that the spaces have the correct format definition.

When a space has no format, there is no way to determine a name for a column. In the example you provided, SQL does not know, which column is key.

Thank u!
There was an error in the generation space