[GitHub] tinkerpop issue #759: TINKERPOP-1846 Fixed bug in LambdaRestrictionStrategy

2017-12-01 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/759 VOTE +1 ---

[GitHub] tinkerpop issue #755: TINKERPOP-1834: Consider iterate() as a first class st...

2017-11-27 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/755 The bug is in GremlinServer's `TraversalOpProcessor`. I have it fixed. Running integration tests now. ---

[GitHub] tinkerpop pull request #755: TINKERPOP-1834: Consider iterate() as a first c...

2017-11-21 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/755 TINKERPOP-1834: Consider iterate() as a first class step https://issues.apache.org/jira/browse/TINKERPOP-1834 This is a re-issuing of a previously closed commit. In this model

[GitHub] tinkerpop issue #748: TINKERPOP-1834: Consider iterate() as a first class st...

2017-11-21 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/748 Closing. Going to provide a simpler solution. ---

[GitHub] tinkerpop pull request #748: TINKERPOP-1834: Consider iterate() as a first c...

2017-11-21 Thread okram
Github user okram closed the pull request at: https://github.com/apache/tinkerpop/pull/748 ---

[GitHub] tinkerpop issue #748: TINKERPOP-1834: Consider iterate() as a first class st...

2017-11-20 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/748 A `cap()` step is a `SupplyBarrierStep` and thus, requires an emission -- a single emission, but an emission nonetheless. The ultimate solution step has to a `FilterStep` by nature so it can truly

[GitHub] tinkerpop issue #748: TINKERPOP-1834: Consider iterate() as a first class st...

2017-11-17 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/748 There is nothing for "the server" to know. Thus, gutting the introspection. By appending `filter(false)` to the bytecode, you have a traversal that returns nothing. Which is exactly wha

[GitHub] tinkerpop issue #748: TINKERPOP-1834: Consider iterate() as a first class st...

2017-11-16 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/748 I think we over engineered this ticket. I believe @dkuppitz has the best idea. ``` public Traversal<S,E> iterate() { this.filter(false); while(hasNext()) {

[GitHub] tinkerpop issue #748: TINKERPOP-1834: Consider iterate() as a first class st...

2017-11-16 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/748 Makes sense. ---

[GitHub] tinkerpop issue #748: TINKERPOP-1834: Consider iterate() as a first class st...

2017-11-15 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/748 ``` [INFO] [INFO] BUILD SUCCESS [INFO

[GitHub] tinkerpop pull request #748: TINKERPOP-1834: Consider iterate() as a first c...

2017-11-15 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/748 TINKERPOP-1834: Consider iterate() as a first class step https://issues.apache.org/jira/browse/TINKERPOP-1834 When a user triggers a "terminal method" (e.g. `toList(

[GitHub] tinkerpop issue #746: TINKERPOP-1829 Made detachment configurable in EventSt...

2017-11-10 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/746 VOTE +1 ---

[GitHub] tinkerpop pull request #744: TINKERPOP-1802: hasId() fails for empty collect...

2017-11-06 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/744 TINKERPOP-1802: hasId() fails for empty collections https://issues.apache.org/jira/browse/TINKERPOP-1802 If `hasId([])` is specified, then an `ArrayOutOfBoundsException` occurs. This has

[GitHub] tinkerpop pull request #743: TINKERPOP-1813: Subgraph step requires the grap...

2017-11-02 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/743 TINKERPOP-1813: Subgraph step requires the graph API https://issues.apache.org/jira/browse/TINKERPOP-1813 This ticket wanted `SubgraphStep` to not use the structure API

[GitHub] tinkerpop pull request #740: TINKERPOP-1814: Some process tests require the ...

2017-11-01 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/740 TINKERPOP-1814: Some process tests require the graph API https://issues.apache.org/jira/browse/TINKERPOP-1814 Fixed assertions in the test cases outlined by @BrynCooke that use

[GitHub] tinkerpop issue #739: TINKERPOP-1821: Consistent behavior of self-referencin...

2017-10-31 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/739 ``` [INFO] [INFO] BUILD SUCCESS [INFO

[GitHub] tinkerpop pull request #739: TINKERPOP-1821: Consistent behavior of self-ref...

2017-10-30 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/739 TINKERPOP-1821: Consistent behavior of self-referencing edges https://issues.apache.org/jira/browse/TINKERPOP-1821 Added test for self-edges and fixed a semantic issue in `Neo4jGraph

[GitHub] tinkerpop issue #734: TINKERPOP-1801: fix profile() timing in OLAP by adding...

2017-10-21 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/734 VOTE +1 ---

[GitHub] tinkerpop issue #735: TINKERPOP-1803: inject() doesn't re-attach with remote...

2017-10-19 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/735 ``` [INFO] [INFO] BUILD SUCCESS [INFO

[GitHub] tinkerpop pull request #735: TINKERPOP-1803: inject() doesn't re-attach with...

2017-10-18 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/735 TINKERPOP-1803: inject() doesn't re-attach with remote traversals https://issues.apache.org/jira/browse/TINKERPOP-1803 Fixed an "attachement"-bug in `InjectStep` with

[GitHub] tinkerpop issue #734: TINKERPOP-1801: fix profile() timing in OLAP by adding...

2017-10-18 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/734 This is a nice update @artem-aliev because it doesn't change API and it is general for all `GraphComputer` implementations. Great! A couple things please for a solid VOTE. 1. Please update

[GitHub] tinkerpop issue #721: TINKERPOP-1786 Recipe and missing manifest items for S...

2017-10-11 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/721 VOTE +1 ---

[GitHub] tinkerpop issue #731: TINKERPOP-1650: PathRetractionStrategy makes Match ste...

2017-10-10 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/731 VOTE +1 ---

[GitHub] tinkerpop pull request #730: TINKERPOP-1797: LambdaRestrictionStrategy and L...

2017-10-09 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/730 TINKERPOP-1797: LambdaRestrictionStrategy and LambdaMapStep in by()-modulation. https://issues.apache.org/jira/browse/TINKERPOP-1797 We have had too many problems

[GitHub] tinkerpop issue #729: TINKERPOP-1632: Create a set of default functions

2017-10-09 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/729 I just unzipped the jar and the META-INF/ does not contain it. Just a pom.xml in there. ---

[GitHub] tinkerpop issue #729: TINKERPOP-1632: Create a set of default functions

2017-10-04 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/729 ``` [INFO] [INFO] BUILD SUCCESS [INFO

[GitHub] tinkerpop pull request #729: TINKERPOP-1632: Create a set of default functio...

2017-10-04 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/729 TINKERPOP-1632: Create a set of default functions https://issues.apache.org/jira/browse/TINKERPOP-1632 This is an implementation of lambda-less math capabilities in Gremlin leveraging

[GitHub] tinkerpop pull request #721: TINKERPOP-1786 Recipe and missing manifest item...

2017-10-03 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/721#discussion_r142426106 --- Diff: hadoop-gremlin/conf/hadoop-gryo.properties --- @@ -29,8 +29,8 @@ gremlin.hadoop.outputLocation=output spark.master=local[4

[GitHub] tinkerpop pull request #726: TINKERPOP-1795: Getting Lambda comparator messa...

2017-10-02 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/726 TINKERPOP-1795: Getting Lambda comparator message for .profile() step https://issues.apache.org/jira/browse/TINKERPOP-1795 Some objects are hard to check for "lambdaness" a

[GitHub] tinkerpop pull request #721: TINKERPOP-1786 Recipe and missing manifest item...

2017-10-01 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/721#discussion_r142035586 --- Diff: hadoop-gremlin/conf/hadoop-gryo.properties --- @@ -29,8 +29,8 @@ gremlin.hadoop.outputLocation=output spark.master=local[4

[GitHub] tinkerpop issue #723: TINKERPOP-1792 Fixed GremlinScriptEngine bug in lambda...

2017-09-28 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/723 VOTE +1 ---

[GitHub] tinkerpop issue #724: TINKERPOP-1793: addE() should allow dynamic edge label...

2017-09-27 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/724 ``` [INFO] [INFO] BUILD SUCCESS [INFO

[GitHub] tinkerpop pull request #724: TINKERPOP-1793: addE() should allow dynamic edg...

2017-09-27 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/724 TINKERPOP-1793: addE() should allow dynamic edge labels https://issues.apache.org/jira/browse/TINKERPOP-1793 There are a few changes here: 1. `addV(traversal)` and `addE(traversal

[GitHub] tinkerpop issue #714: TINKERPOP-1782 RangeByIsCountStrategy doesn't handle f...

2017-09-26 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/714 VOTE +1 ---

[GitHub] tinkerpop issue #721: TINKERPOP-1786 Recipe and missing manifest items for S...

2017-09-25 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/721 This is good stuff. Is it possible to write a test case for the work? Also, can you fix your documentation so its `TinkerPop` not `Tinkerpop` (camel case). ---

[GitHub] tinkerpop pull request #720: TINKERPOP-1789: Reference elements should be re...

2017-09-22 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/720#discussion_r140513636 --- Diff: docs/src/upgrade/release-3.2.x-incubating.asciidoc --- @@ -95,6 +95,19 @@ In `gremlin-test` there is a new `GraphHelper` class that has

[GitHub] tinkerpop issue #720: TINKERPOP-1789: Reference elements should be represent...

2017-09-21 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/720 ``` [INFO] [INFO] BUILD SUCCESS [INFO

[GitHub] tinkerpop pull request #720: TINKERPOP-1789: Reference elements should be re...

2017-09-21 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/720 TINKERPOP-1789: Reference elements should be represented by id and label https://issues.apache.org/jira/browse/TINKERPOP-1789 Fixed a bug where `ReferenceVertex` was always returning

[GitHub] tinkerpop pull request #717: TINKERPOP-1783: PageRank gives incorrect result...

2017-09-20 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/717#discussion_r139994557 --- Diff: gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/computer/ranking/pagerank/PageRankVertexProgramTest.java --- @@ -38,7 +38,7

[GitHub] tinkerpop pull request #717: TINKERPOP-1783: PageRank gives incorrect result...

2017-09-20 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/717#discussion_r139992366 --- Diff: docs/src/upgrade/release-3.3.x.asciidoc --- @@ -32,6 +32,43 @@ Please see the link:https://github.com/apache/tinkerpop/blob/3.3.1/CHANGELOG.asc

[GitHub] tinkerpop issue #717: TINKERPOP-1783: PageRank gives incorrect results for g...

2017-09-20 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/717 Pushed `maxIterations` concept. ---

[GitHub] tinkerpop issue #717: TINKERPOP-1783: PageRank gives incorrect results for g...

2017-09-20 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/717 You know what we should do. It should be `maxIterations`. This way, if it converges before hand, great. Done. If it doesn't, well, it will go for `maxIterations` and then stop. This way `epsilon

[GitHub] tinkerpop issue #717: TINKERPOP-1783: PageRank gives incorrect results for g...

2017-09-20 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/717 @spmallette -- I'm putting this into `TP 3.3.x` because it is a breaking change. I believe it is too late into `3.2.x` to introduce such changes. ---

[GitHub] tinkerpop pull request #717: TINKERPOP-1783: PageRank gives incorrect result...

2017-09-20 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/717#discussion_r139985206 --- Diff: gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/computer/ranking/pagerank/PageRankVertexProgramTest.java --- @@ -38,7 +38,7

[GitHub] tinkerpop pull request #717: TINKERPOP-1783: PageRank gives incorrect result...

2017-09-20 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/717#discussion_r139984956 --- Diff: gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/ranking/pagerank/PageRankVertexProgram.java --- @@ -155,61 +161,61

[GitHub] tinkerpop pull request #717: TINKERPOP-1783: PageRank gives incorrect result...

2017-09-20 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/717#discussion_r139984575 --- Diff: gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/traversal/step/map/PageRankVertexProgramStep.java --- @@ -47,7 +47,7

[GitHub] tinkerpop issue #713: TINKERPOP-1779 Bump to GMavenPlus 1.6

2017-09-18 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/713 VOTE +1 ---

[GitHub] tinkerpop pull request #717: TINKERPOP-1783: PageRank gives incorrect result...

2017-09-18 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/717 TINKERPOP-1783: PageRank gives incorrect results for graphs with sinks https://issues.apache.org/jira/browse/TINKERPOP-1783 There were a couple of problems with `PageRankVertexProgram

[GitHub] tinkerpop pull request #714: TINKERPOP-1782 RangeByIsCountStrategy doesn't h...

2017-09-13 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/714#discussion_r138748892 --- Diff: gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/RangeByIsCountStrategyTest.java --- @@ -99,6

[GitHub] tinkerpop issue #708: TINKERPOP-1770 Enable timeouts for remote traversals

2017-09-12 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/708 VOTE +1 ---

[GitHub] tinkerpop pull request #711: TINKERPOP-1746: Better error message on wrong o...

2017-09-11 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/711 TINKERPOP-1746: Better error message on wrong ordering of emit()/until()/has() Simply added a proper error message when `repeatTraversal` is null. This provides a better user experience than

[GitHub] tinkerpop issue #705: make TinkerGraph cloneable

2017-09-08 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/705 Yes. Exactly. Here is the thing is -- I don't really care for TinkerPop3 anymore so it can go as people want it too, I won't fight. But if you want to start aligning concepts so TinkerPop4

[GitHub] tinkerpop issue #705: make TinkerGraph cloneable

2017-09-08 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/705 `TinkerGraph.clear()` is bad too. It is `g.V().drop()`. ---

[GitHub] tinkerpop issue #705: make TinkerGraph cloneable

2017-09-08 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/705 I don't think it is a good idea to implement `TinkerGraph.clone()`. I think, instead, that there could be a "clone utility" that works for all graphs, not just Tinker

[GitHub] tinkerpop issue #699: TINKERPOP-1759 Improve hashcode and equals for Travers...

2017-08-30 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/699 I'm scared -- VOTE +1. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes

[GitHub] tinkerpop pull request #701: TINKERPOP-1762: Make MatchStep analyze mid-clau...

2017-08-30 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/701#discussion_r136094137 --- Diff: gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/MatchStep.java --- @@ -513,8 +513,15 @@ public int hashCode

[GitHub] tinkerpop pull request #702: TINKERPOP-1764: Generalize MatchStep to localiz...

2017-08-30 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/702 TINKERPOP-1764: Generalize MatchStep to localize all barriers, not just reducing barriers. https://issues.apache.org/jira/browse/TINKERPOP-1764 Prior to this moment, only reducing barrier

[GitHub] tinkerpop pull request #701: TINKERPOP-1762: Make MatchStep analyze mid-clau...

2017-08-29 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/701 TINKERPOP-1762: Make MatchStep analyze mid-clause variables for executing ordering purposes. https://issues.apache.org/jira/browse/TINKERPOP-1762 There was a bug in `MatchStep` where

[GitHub] tinkerpop issue #698: added repeat simple path test

2017-08-28 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/698 @xytxytxyt -- please close this ticket if everything looks good to you. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your

[GitHub] tinkerpop issue #698: added repeat simple path test

2017-08-28 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/698 Merged. I had to tweak both tests a bit. `limit(1)` still in the groovy test. The test used `values('name')` instead of just `name`. Groovy test was not in sugar syntax. --- If your project

[GitHub] tinkerpop issue #700: TINKERPOP-1760: OLAP compilation failing around Connec...

2017-08-28 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/700 ``` [INFO] [INFO] BUILD SUCCESS [INFO

[GitHub] tinkerpop pull request #698: added repeat simple path test

2017-08-28 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/698#discussion_r135646159 --- Diff: gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/traversal/step/branch/GroovyRepeatTest.groovy --- @@ -97,5 +97,10

[GitHub] tinkerpop pull request #699: TINKERPOP-1759 Improve hashcode and equals for ...

2017-08-28 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/699#discussion_r135642938 --- Diff: gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/traverser/B_O_S_SE_SL_Traverser.java --- @@ -110,17 +112,22 @@ public

[GitHub] tinkerpop pull request #699: TINKERPOP-1759 Improve hashcode and equals for ...

2017-08-28 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/699#discussion_r135642562 --- Diff: gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/traverser/O_Traverser.java --- @@ -23,6 +23,7 @@ import

[GitHub] tinkerpop pull request #699: TINKERPOP-1759 Improve hashcode and equals for ...

2017-08-28 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/699#discussion_r135642343 --- Diff: gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/traverser/LP_O_OB_P_S_SE_SL_Traverser.java --- @@ -106,17 +106,18

[GitHub] tinkerpop pull request #699: TINKERPOP-1759 Improve hashcode and equals for ...

2017-08-28 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/699#discussion_r135642190 --- Diff: gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/traverser/B_O_Traverser.java --- @@ -62,10 +62,12 @@ public void

[GitHub] tinkerpop issue #700: TINKERPOP-1760: OLAP compilation failing around Connec...

2017-08-28 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/700 No. I just spaced on selecting `tp32/` and left it defaulted at `master/`. Fixed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well

[GitHub] tinkerpop pull request #700: TINKERPOP-1760: OLAP compilation failing around...

2017-08-28 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/700 TINKERPOP-1760: OLAP compilation failing around ConnectiveStrategy https://issues.apache.org/jira/browse/TINKERPOP-1760 The more general problem was in `ComputerVerificationStrategy

[GitHub] tinkerpop pull request #699: TINKERPOP-1759 Improve hashcode and equals for ...

2017-08-28 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/699#discussion_r135576162 --- Diff: tinkergraph-gremlin/src/test/java/org/apache/tinkerpop/gremlin/tinkergraph/process/traversal/TinkerGraphPerformanceTest.java --- @@ -0,0 +1,53

[GitHub] tinkerpop issue #698: added repeat simple path test

2017-08-25 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/698 VOTE +1. (I can do the final merge when all the votes are tallied) --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project

[GitHub] tinkerpop issue #698: added repeat simple path test

2017-08-24 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/698 The result is the same. However, I would prefer to have "the simplest query that fails" and thus, no `limit(1)`, but if the DSEGraph traversal strategies are failing cause of `limit(1)

[GitHub] tinkerpop issue #698: added repeat simple path test

2017-08-24 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/698 Is the `limit(1)` necessary for the DSEGraph testing because against MODERN its the same result?There is only 1 outgoing path between marko and ripple. ``` gremlin> g.V().has('n

[GitHub] tinkerpop issue #698: added repeat simple path test

2017-08-24 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/698 What is the intention of the test? What are you trying to prove? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does

[GitHub] tinkerpop issue #697: TINKERPOP-1753 OrderStep not able to order by non-inte...

2017-08-23 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/697 VOTE +1 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so

[GitHub] tinkerpop issue #697: TINKERPOP-1753 OrderStep not able to order by non-inte...

2017-08-18 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/697 Cleaner `if/else` clause. ``` return first instanceof Number && second instanceof Number ? NumberHelper.compare((Number) second, (Number) first) : Co

[GitHub] tinkerpop issue #697: TINKERPOP-1753 OrderStep not able to order by non-inte...

2017-08-18 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/697 Eek. Yea. That `try/catch` sorta sucks. Can you do some performance testing with and without they `try/catch`? Would you mind? --- If your project is set up for it, you can reply to this email

[GitHub] tinkerpop issue #691: TINKERPOP-1747 Streamline inheritance for gremlin-pyth...

2017-08-10 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/691 I am not too hip to the Python code anymore, but I do know that adding the GraphSON3 support was a little "sketchy". Thus, if this is a Python-esque improvement upon my non-Pyt

[GitHub] tinkerpop issue #687: TINKERPOP-1742 RangeByIsCountStrategy fails for Connec...

2017-08-09 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/687 VOTE +1 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so

[GitHub] tinkerpop issue #688: TINKERPOP-1742 RangeByIsCountStrategy fails for Connec...

2017-08-09 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/688 VOTE +1 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so

[GitHub] tinkerpop pull request #687: TINKERPOP-1742 RangeByIsCountStrategy fails for...

2017-08-09 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/687#discussion_r132184141 --- Diff: gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/CountStrategyTest.java --- @@ -95,6 +95,7

[GitHub] tinkerpop pull request #687: TINKERPOP-1742 RangeByIsCountStrategy fails for...

2017-08-09 Thread okram
Github user okram commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/687#discussion_r132183920 --- Diff: CHANGELOG.asciidoc --- @@ -143,6 +143,7 @@ TinkerPop 3.2.6 (Release Date: NOT OFFICIALLY RELEASED YET) This release also includes

[GitHub] tinkerpop issue #689: TINKERPOP-1743: LambdaRestrictionStrategy does not cat...

2017-08-08 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/689 VOTE +1 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so

[GitHub] tinkerpop issue #689: TINKERPOP-1743: LambdaRestrictionStrategy does not cat...

2017-08-08 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/689 ``` gremlin> g = TinkerFactory.createModern().traversal() ==>graphtraversalsource[tinkergraph[vertices:6 edges:6], standard] gremlin> g = g.withS

[GitHub] tinkerpop pull request #689: TINKERPOP-1743: LambdaRestrictionStrategy does ...

2017-08-08 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/689 TINKERPOP-1743: LambdaRestrictionStrategy does not catch lambdas passed to sack() https://issues.apache.org/jira/browse/TINKERPOP-1743 Fixed a lambda-leak in `SackValueStep` where

[GitHub] tinkerpop issue #685: TINKERPOP-1724 Remove deprecated ScriptElementFactory

2017-08-03 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/685 Very good. VOTE +1. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so

[GitHub] tinkerpop issue #686: TINKERPOP-1740: Add vertex parameter overload to to() ...

2017-08-03 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/686 VOTE +1. ``` [INFO] [INFO] BUILD SUCCESS [INFO

[GitHub] tinkerpop pull request #686: TINKERPOP-1740: Add vertex parameter overload t...

2017-08-02 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/686 TINKERPOP-1740: Add vertex parameter overload to to() and from() https://issues.apache.org/jira/browse/TINKERPOP-1740 Is it me or is it hot out? Oo... ``` a = g.V(1

[GitHub] tinkerpop issue #684: TINKERPOP-1736 Sack step evaluated by groovy interpret...

2017-07-31 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/684 VOTE +1 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so

[GitHub] tinkerpop issue #683: TINKERPOP-1736 Sack step evaluated by groovy interpret...

2017-07-31 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/683 VOTE +1 (got rid of BigDecimal typing -- good). --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have

[GitHub] tinkerpop issue #682: TINKERPOP-1736 Sack step evaluated by groovy interpret...

2017-07-27 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/682 Ah. I didn't realize that either. BigDecimal is not something we want to support. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub

[GitHub] tinkerpop issue #681: TINKERPOP-1535: Bump to support Giraph 1.2.0.

2017-07-25 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/681 ``` [INFO] [INFO] BUILD SUCCESS [INFO

[GitHub] tinkerpop issue #682: TINKERPOP-1736 Sack step evaluated by groovy interpret...

2017-07-25 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/682 VOTE +1 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so

[GitHub] tinkerpop pull request #681: TINKERPOP-1535: Bump to support Giraph 1.2.0.

2017-07-25 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/681 TINKERPOP-1535: Bump to support Giraph 1.2.0. https://issues.apache.org/jira/browse/TINKERPOP-1535 I bumped Giraph from 1.1.0 to 1.20. It was a pretty straight forward upgrade

[GitHub] tinkerpop pull request #677: TINKERPOP-1729: Remove deprecated select steps.

2017-07-24 Thread okram
Github user okram closed the pull request at: https://github.com/apache/tinkerpop/pull/677 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature

[GitHub] tinkerpop issue #677: TINKERPOP-1729: Remove deprecated select steps.

2017-07-21 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/677 @dkuppitz Can you review this please? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] tinkerpop pull request #679: TINKERPOP-1679: Detached side-effects aren't at...

2017-07-20 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/679 TINKERPOP-1679: Detached side-effects aren't attached when remoted https://issues.apache.org/jira/browse/TINKERPOP-1679 This was occurring because Gremlin-Python did not have serializers

[GitHub] tinkerpop issue #677: TINKERPOP-1729: Remove deprecated select steps.

2017-07-18 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/677 Yes -- tested again to be safe. ``` [INFO] [INFO] BUILD SUCCESS [INFO

[GitHub] tinkerpop issue #675: Ensure serializers iteration is consistent

2017-07-17 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/675 VOTE +1 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so

[GitHub] tinkerpop issue #678: TINKERPOP-1715: update spark version to 2.2

2017-07-17 Thread okram
Github user okram commented on the issue: https://github.com/apache/tinkerpop/pull/678 VOTE +1 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so

[GitHub] tinkerpop pull request #677: TINKERPOP-1729: Remove deprecated select steps.

2017-07-14 Thread okram
GitHub user okram opened a pull request: https://github.com/apache/tinkerpop/pull/677 TINKERPOP-1729: Remove deprecated select steps. https://issues.apache.org/jira/browse/TINKERPOP-1729 There is no point is crying over spilled milk. The deed is done. It had to be done

  1   2   3   4   5   >