-
Notifications
You must be signed in to change notification settings - Fork 871
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed minor bug on non blocking query result, issue #6267
- Loading branch information
Showing
2 changed files
with
87 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
graphdb/src/test/java/com/orientechnologies/orient/graph/GraphNonBlockingQuery.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
package com.orientechnologies.orient.graph; | ||
|
||
import com.orientechnologies.orient.core.command.OCommandResultListener; | ||
import com.orientechnologies.orient.core.db.ODatabaseDocumentInternal; | ||
import com.orientechnologies.orient.core.db.ODatabaseRecordThreadLocal; | ||
import com.orientechnologies.orient.core.metadata.schema.OType; | ||
import com.orientechnologies.orient.core.record.impl.ODocument; | ||
import com.orientechnologies.orient.core.sql.query.OSQLNonBlockingQuery; | ||
import com.tinkerpop.blueprints.impls.orient.OrientGraph; | ||
import com.tinkerpop.blueprints.impls.orient.OrientVertex; | ||
import org.junit.Test; | ||
|
||
import java.util.concurrent.ExecutionException; | ||
|
||
|
||
/** | ||
* Created by tglman on 01/07/16. | ||
*/ | ||
public class GraphNonBlockingQuery { | ||
|
||
@Test | ||
public void testNonBlockingClose() throws ExecutionException, InterruptedException { | ||
OrientGraph database = new OrientGraph("memory:" + GraphNonBlockingQuery.class.getSimpleName()); | ||
database.createVertexType("Prod").createProperty("something", OType.STRING); | ||
for (int i = 0; i < 21; i++) { | ||
OrientVertex vertex = database.addVertex(null); | ||
vertex.setProperty("something", "value"); | ||
vertex.save(); | ||
} | ||
try { | ||
OSQLNonBlockingQuery<Object> test = new OSQLNonBlockingQuery<Object>("select * from Prod ", new OCommandResultListener() { | ||
int resultCount = 0; | ||
|
||
@Override | ||
public boolean result(Object iRecord) { | ||
resultCount++; | ||
|
||
ODocument odoc = ((ODocument) iRecord); | ||
ODatabaseDocumentInternal db = ODatabaseRecordThreadLocal.INSTANCE.get(); | ||
System.out.println(db); | ||
for (String name : odoc.fieldNames()) { // <----------- PROBLEM | ||
System.out.println("Name:" + name); | ||
} | ||
|
||
System.out.println("callback " + resultCount + " invoked"); | ||
return resultCount > 20 ? false : true; | ||
} | ||
|
||
@Override | ||
public void end() { | ||
} | ||
|
||
@Override | ||
public Object getResult() { | ||
return true; | ||
} | ||
}); | ||
|
||
database.command(test).execute(); | ||
System.out.println("query executed"); | ||
} finally { | ||
System.out.println("Original" + database); | ||
database.shutdown(); | ||
} | ||
} | ||
|
||
} |