Commit de47ef02 by Christopher Hyzer

Forgot the commit() to add the index...fixed.

parent 3fe82d56
...@@ -148,6 +148,7 @@ public class TitanGraphService implements GraphService { ...@@ -148,6 +148,7 @@ public class TitanGraphService implements GraphService {
PropertyKey typeName = mgmt.makePropertyKey("TYPE_NAME").dataType(String.class).make(); PropertyKey typeName = mgmt.makePropertyKey("TYPE_NAME").dataType(String.class).make();
mgmt.buildIndex("byTypeName",Vertex.class).addKey(typeName).buildCompositeIndex(); mgmt.buildIndex("byTypeName",Vertex.class).addKey(typeName).buildCompositeIndex();
/* More attributes from the Hive bridge. /* More attributes from the Hive bridge.
PropertyKey ownerName = mgmt.makePropertyKey("OWNER_NAME").dataType(String.class).make(); PropertyKey ownerName = mgmt.makePropertyKey("OWNER_NAME").dataType(String.class).make();
...@@ -165,6 +166,8 @@ public class TitanGraphService implements GraphService { ...@@ -165,6 +166,8 @@ public class TitanGraphService implements GraphService {
PropertyKey comment = mgmt.makePropertyKey("COMMENT").dataType(Integer.class).make(); PropertyKey comment = mgmt.makePropertyKey("COMMENT").dataType(Integer.class).make();
mgmt.buildIndex("byComment",Vertex.class).addKey(comment).buildCompositeIndex(); mgmt.buildIndex("byComment",Vertex.class).addKey(comment).buildCompositeIndex();
*/ */
mgmt.commit();
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment