This is an automated email from the ASF dual-hosted git repository. spmallette pushed a commit to branch TINKERPOP-2235 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit a2fce50b4544f63095ba906e434d7febeeb68de4 Author: stephen <[email protected]> AuthorDate: Tue Nov 5 16:04:37 2019 -0500 TINKERPOP-2235 Exposed the configuration option for null as a feature --- .../gremlin/tinkergraph/structure/TinkerGraph.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java b/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java index 2f83a87..2410445 100644 --- a/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java +++ b/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java @@ -388,6 +388,11 @@ public final class TinkerGraph implements Graph { } @Override + public boolean supportsNullPropertyValues() { + return allowNullPropertyValues; + } + + @Override public Features.VertexPropertyFeatures properties() { return vertexPropertyFeatures; } @@ -414,6 +419,11 @@ public final class TinkerGraph implements Graph { } @Override + public boolean supportsNullPropertyValues() { + return allowNullPropertyValues; + } + + @Override public boolean supportsCustomIds() { return false; } @@ -452,6 +462,11 @@ public final class TinkerGraph implements Graph { } @Override + public boolean supportsNullPropertyValues() { + return allowNullPropertyValues; + } + + @Override public boolean supportsCustomIds() { return false; }
