You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no error if the desc instruction is not present, when the query is run from the studio
Here is the error I got when the query is created with the Java API, the error is display in loop.
févr. 18, 2015 11:05:47 AM com.orientechnologies.common.log.OLogManager log WARNING: Connection re-acquired transparently after 7ms and 1 retries to server 'orientdb:2424/CBWeb': no errors will be thrown at application level
févr. 18, 2015 11:05:47 AM com.orientechnologies.common.log.OLogManager log WARNING: Caught I/O errors from orientdb/127.0.0.1:2424 (local socket=/127.0.0.1:51695), trying to reconnect (error: com.orientechnologies.common.io.OIOException: You cannot access outside the file size (0 bytes). You have requested portion -65536-0 bytes. File: File: formula.cpm os-size=1024, stored=0, filled=0, max=0)
févr. 18, 2015 11:05:47 AM com.orientechnologies.common.log.OLogManager log SEVERE: Removing disconnected network channel 'orientdb:2424/CBWeb'...
Here is the Java code :
List<ODocument> resultset = getDatabase()
.query(new OSQLSynchQuery<ODocument>(
String.format(
"select from %s order by @rid desc",
className), 1).setFetchPlan(fetchPlan));
The text was updated successfully, but these errors were encountered:
This issues seems to be related to #2966. I'm currently running a document database with the version 2.0.2
Here is the error I get from the console :
A quick overview of the db structure:
The error occurs on query
There is no error if the
desc
instruction is not present, when the query is run from the studioHere is the error I got when the query is created with the Java API, the error is display in loop.
Here is the Java code :
The text was updated successfully, but these errors were encountered: