You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "Marko A. Rodriguez (JIRA)" <ji...@apache.org> on 2015/10/26 03:01:27 UTC

[jira] [Created] (TINKERPOP3-919) Features needs to specify whether 2 vertex properties with same key/value is allowed.

Marko A. Rodriguez created TINKERPOP3-919:
---------------------------------------------

             Summary: Features needs to specify whether 2 vertex properties with same key/value is allowed.
                 Key: TINKERPOP3-919
                 URL: https://issues.apache.org/jira/browse/TINKERPOP3-919
             Project: TinkerPop 3
          Issue Type: Improvement
          Components: structure, test-suite, tinkergraph
    Affects Versions: 3.0.2-incubating
            Reporter: Marko A. Rodriguez


TinkerGraph does not support two vertex properties with the same key/value.

{code}
gremlin> graph = TinkerGraph.open()
==>tinkergraph[vertices:0 edges:0]
gremlin> v = graph.addVertex()
==>v[0]
gremlin> v.property("name","marko")
==>vp[name->marko]
gremlin> v.property("name","marko")
==>vp[name->marko]
gremlin> v.properties("name")
==>vp[name->marko]
{code}

I just noted we don't have this as a {{Feature}} and we should (w/ respective test cases).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)