You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hugegraph.apache.org by "joyemang33 (via GitHub)" <gi...@apache.org> on 2023/02/26 03:32:51 UTC

[GitHub] [incubator-hugegraph] joyemang33 opened a new issue, #2125: [Bug] Unexpected exceptions are triggered by comparing the aggregate of values that contains “NaN”, “Infinity” or “-Infinity”.

joyemang33 opened a new issue, #2125:
URL: https://github.com/apache/incubator-hugegraph/issues/2125

   ### Bug Type (问题类型)
   
   other exception / error (其他异常报错)
   
   ### Before submit
   
   - [X] 我已经确认现有的 [Issues](https://github.com/hugegraph/hugegraph/issues) 与 [FAQ](https://hugegraph.github.io/hugegraph-doc/guides/faq.html) 中没有相同 / 重复问题
   
   ### Environment (环境信息)
   
   - Server Version: Apache HugeGraph(incubating) Release 1.0.0
   - Backend: RocksDB x nodes, HDD or SSD 
   - OS: xx CPUs, xx G RAM, Centos 7.x 
   - Data Size:  10 vertices, 50 edges
   
   
   ### Expected & Actual behavior (期望与实际表现)
   
   ```
   Gremlin1: hugegraph.traversal().V().local(__.values("prop16").mean())
   Result: "-Infinity", -17353689731694592, "Infinity", "-Infinity", -255140178576801800, 0, 0
   Gremlin2: hugegraph.traversal().V().where(__.values("prop16").mean().is(lt(7.23))).count()
   Result: java.lang.NumberFormatException
   ```
   We want to count the number of vertices v whose __.values(”prop16”).mean() is less than a constant 7.23, whereas there is a “java.lang.NumberFormatException".
   
   The Graph is created in the following Gremlin (same as 2122):
   ```
   hugegraph.schema().propertyKey("PersonalId").asInt().ifNotExist().create()
   hugegraph.schema().propertyKey("prop1").asText().ifNotExist().create()
   hugegraph.schema().propertyKey("prop2").asInt().ifNotExist().create()
   hugegraph.schema().propertyKey("prop3").asInt().ifNotExist().create()
   hugegraph.schema().propertyKey("prop4").asBoolean().ifNotExist().create()
   hugegraph.schema().propertyKey("prop5").asLong().ifNotExist().create()
   hugegraph.schema().propertyKey("prop6").asLong().ifNotExist().create()
   hugegraph.schema().propertyKey("prop7").asFloat().ifNotExist().create()
   hugegraph.schema().propertyKey("prop8").asText().ifNotExist().create()
   hugegraph.schema().propertyKey("prop9").asInt().ifNotExist().create()
   hugegraph.schema().propertyKey("prop10").asFloat().ifNotExist().create()
   hugegraph.schema().propertyKey("prop11").asBoolean().ifNotExist().create()
   hugegraph.schema().propertyKey("prop12").asFloat().ifNotExist().create()
   hugegraph.schema().propertyKey("prop13").asLong().ifNotExist().create()
   hugegraph.schema().propertyKey("prop14").asLong().ifNotExist().create()
   hugegraph.schema().propertyKey("prop15").asLong().ifNotExist().create()
   hugegraph.schema().propertyKey("prop16").asFloat().ifNotExist().create()
   hugegraph.schema().propertyKey("prop17").asText().ifNotExist().create()
   hugegraph.schema().propertyKey("prop18").asBoolean().ifNotExist().create()
   hugegraph.schema().propertyKey("prop19").asInt().ifNotExist().create()
   hugegraph.schema().propertyKey("prop20").asDouble().ifNotExist().create(
   hugegraph.schema().propertyKey("prop21").asBoolean().ifNotExist().create()
   hugegraph.schema().propertyKey("prop22").asFloat().ifNotExist().create()
   hugegraph.schema().propertyKey("prop23").asText().ifNotExist().create()
   hugegraph.schema().propertyKey("prop24").asInt().ifNotExist().create()
   hugegraph.schema().propertyKey("prop25").asLong().ifNotExist().create()
   hugegraph.schema().propertyKey("prop26").asInt().ifNotExist().create()
   hugegraph.schema().propertyKey("prop27").asLong().ifNotExist().create()
   hugegraph.schema().propertyKey("prop28").asFloat().ifNotExist().create()
   hugegraph.schema().propertyKey("prop29").asText().ifNotExist().create()
   hugegraph.schema().propertyKey("prop30").asText().ifNotExist().create()
   hugegraph.schema().vertexLabel("Vlabel1").useAutomaticId().properties("prop29", "prop14", "prop11", "prop5", "prop15", "prop2", "prop19", "prop3", "prop12", "prop24", "prop30", "prop9", "prop8", "prop18", "prop1", "PersonalId").create()
   hugegraph.schema().vertexLabel("Vlabel2").useAutomaticId().properties("prop2", "prop9", "prop6", "prop30", "prop28", "prop16", "prop12", "prop15", "prop18", "PersonalId").create()
   hugegraph.schema().vertexLabel("Vlabel3").useAutomaticId().properties("prop1", "prop17", "prop13", "prop21", "prop8", "prop24", "prop22", "prop29", "prop7", "prop23", "prop26", "prop4", "prop11", "PersonalId").create()
   hugegraph.schema().vertexLabel("Vlabel4").useAutomaticId().properties("prop8", "prop19", "prop22", "prop16", "prop7", "prop27", "prop14", "prop6", "prop2", "PersonalId").create()
   hugegraph.schema().vertexLabel("Vlabel5").useAutomaticId().properties("prop1", "prop4", "prop26", "prop25", "prop27", "prop13", "prop14", "prop17", "prop3", "prop16", "prop6", "prop10", "prop11", "prop9", "prop30", "prop20", "prop18", "prop24", "prop5", "prop8", "prop19", "PersonalId").create()
   hugegraph.schema().edgeLabel("Elabel1").sourceLabel("Vlabel5").targetLabel("Vlabel2").properties("prop9", "prop27", "prop30", "prop24", "PersonalId").create()
   hugegraph.schema().edgeLabel("Elabel2").sourceLabel("Vlabel1").targetLabel("Vlabel1").properties("prop21", "prop5", "prop17", "prop1", "prop4", "prop24", "prop11", "prop25", "prop15", "prop2", "prop6", "prop12", "prop8", "prop30", "prop14", "prop18", "prop19", "PersonalId").create()
   hugegraph.schema().edgeLabel("Elabel3").sourceLabel("Vlabel3").targetLabel("Vlabel3").properties("prop4", "prop5", "prop10", "prop21", "prop27", "prop26", "prop13", "prop3", "prop16", "prop1", "prop29", "prop20", "PersonalId").create()
   hugegraph.schema().edgeLabel("Elabel4").sourceLabel("Vlabel2").targetLabel("Vlabel5").properties("prop23", "prop21", "prop26", "prop20", "prop3", "prop6", "prop5", "prop11", "prop15", "prop2", "prop14", "prop19", "prop7", "prop17", "prop30", "prop25", "prop13", "prop10", "prop8", "prop27", "PersonalId").create()
   hugegraph.schema().edgeLabel("Elabel5").sourceLabel("Vlabel5").targetLabel("Vlabel5").properties("prop26", "prop30", "prop24", "prop18", "prop25", "prop8", "prop19", "prop1", "prop7", "prop14", "prop22", "prop5", "prop21", "prop17", "prop15", "prop23", "prop12", "PersonalId").create()
   hugegraph.schema().edgeLabel("Elabel6").sourceLabel("Vlabel3").targetLabel("Vlabel2").properties("prop1", "prop15", "prop28", "prop29", "prop5", "prop13", "prop18", "prop30", "prop27", "prop26", "prop2", "prop24", "prop6", "prop14", "PersonalId").create()
   hugegraph.schema().edgeLabel("Elabel7").sourceLabel("Vlabel2").targetLabel("Vlabel2").properties("prop24", "prop19", "prop28", "prop21", "prop13", "prop16", "prop27", "prop7", "prop26", "prop5", "prop25", "prop30", "prop8", "prop11", "prop22", "prop18", "prop6", "prop1", "prop17", "prop9", "prop29", "prop4", "prop14", "prop23", "prop12", "prop3", "prop15", "prop10", "PersonalId").create()
   hugegraph.schema().edgeLabel("Elabel8").sourceLabel("Vlabel5").targetLabel("Vlabel5").properties("prop13", "prop2", "prop23", "prop30", "prop25", "prop14", "prop8", "prop19", "prop16", "prop27", "prop17", "prop5", "prop29", "prop26", "prop28", "prop15", "PersonalId").create()
   hugegraph.schema().edgeLabel("Elabel9").sourceLabel("Vlabel4").targetLabel("Vlabel4").properties("prop29", "prop18", "prop5", "prop3", "prop27", "prop10", "prop16", "prop2", "prop17", "prop7", "prop9", "prop25", "prop21", "prop4", "prop8", "prop14", "prop20", "prop6", "PersonalId").create()
   hugegraph.schema().edgeLabel("Elabel10").sourceLabel("Vlabel5").targetLabel("Vlabel4").properties("prop17", "prop22", "prop3", "prop4", "PersonalId").create()
   hugegraph.traversal().addV("Vlabel1").property("prop29", "s8nlq").property("prop14", 3219877184952599136).property("prop11", true).property("prop5", -3148480937061899881).property("prop15", -7531603723186372640).property("prop2", 150635187).property("prop19", -1586642227).property("prop3", -433042563).property("prop12", 7.361819882904424e+16).property("prop24", -1416605958).property("prop30", "Krgw").property("prop9", 1977207770).property("prop8", "6HNz6X9FcMOyrAZlej2x").property("prop18", true).property("prop1", "Koc").property("PersonalId", 1
   hugegraph.traversal().addV("Vlabel2").property("prop2", -447677173).property("prop9", -1974054855).property("prop6", -1449651658852610387).property("prop30", "1phMsd9YqmgVO").property("prop28", -8.560865548578894e+16).property("prop16", Double.NEGATIVE_INFINITY).property("prop12", -1.877850617321795e+17).property("prop15", 5010531954774764799).property("prop18", false).property("PersonalId", 2)
   hugegraph.traversal().addV("Vlabel3").property("prop1", "PAOGEBA").property("prop17", "w").property("prop13", 4148316847328790620).property("prop21", true).property("prop8", "S").property("prop24", 1751429657).property("prop22", -3.094412772893735e+18).property("prop29", "FsLG0spWawdFRvCuose").property("prop7", Double.NaN).property("prop23", "97dbrf").property("prop26", -1728162278).property("prop4", true).property("prop11", true).property("PersonalId", 3)
   hugegraph.traversal().addV("Vlabel4").property("prop8", "lOin4").property("prop19", 736175017).property("prop22", 1.2484793127886643e+18).property("prop16", -1.735369011143557e+16).property("prop7", Double.NEGATIVE_INFINITY).property("prop27", -1511442305888231851).property("prop14", -1189995272099449983).property("prop6", -5752723585772455848).property("prop2", 1035644782).property("PersonalId", 4)
   hugegraph.traversal().addV("Vlabel5").property("prop1", "uIyjNsvl9u3XaJqjT").property("prop4", false).property("prop26", 884868544).property("prop25", 6059948853534164728).property("prop27", -2496313323065533200).property("prop13", -4390467401751890841).property("prop14", 27907475024207136).property("prop17", "TA").property("prop3", -1841646556).property("prop16", Double.POSITIVE_INFINITY).property("prop6", 2987164657314018363).property("prop10", Double.NaN).property("prop11", true).property("prop9", -687538782).property("prop30", "09qlduNzdJP79Du7ruUi").property("prop20", Double.NaN).property("prop18", true).property("prop24", 409210450).property("prop5", -2609599028322857731).property("prop8", "Hwtf7SmnQ7").property("prop19", 1263665914).property("PersonalId", 5)
   hugegraph.traversal().addV("Vlabel2").property("prop2", 1705603980).property("prop9", -2000454676).property("prop6", 2475006650975882553).property("prop30", "do8iCYE27TM79GLCB").property("prop28", 4.118859791677113e+17).property("prop16", Double.NEGATIVE_INFINITY).property("prop12", Double.NEGATIVE_INFINITY).property("prop15", 2495480627701836070).property("prop18", true).property("PersonalId", 6)
   hugegraph.traversal().addV("Vlabel4").property("prop8", "wzO8dR0z79LLNOOY").property("prop19", -246247324).property("prop22", Double.POSITIVE_INFINITY).property("prop16", -2.5514018651490422e+17).property("prop7", Double.NaN).property("prop27", 324429812503454806).property("prop14", -7753441044637781621).property("prop6", 5842135342489227638).property("prop2", -2119685421).property("PersonalId", 7)
   hugegraph.traversal().addV("Vlabel5").property("prop1", "nkk4KlV").property("prop4", true).property("prop26", 2100569157).property("prop25", 4053933124674592497).property("prop27", 5643538121056888847).property("prop13", 2545812654258942611).property("prop14", -5480160166839087776).property("prop17", "dNbt33FqvGhEP").property("prop3", 1088832310).property("prop16", Double.NaN).property("prop6", 8013729080855773623).property("prop10", -3.3808684090031452e+16).property("prop11", false).property("prop9", 965251896).property("prop30", "CPC").property("prop20", 1.2694911285584906e+18).property("prop18", false).property("prop24", -971824405).property("prop5", -6361079442848605092).property("prop8", "Eyop9F42KEI").property("prop19", -1336607272).property("PersonalId", 8)
   hugegraph.traversal().addV("Vlabel3").property("prop1", "kdlup").property("prop17", "bVK0gfD0goA").property("prop13", 756576782918843616).property("prop21", false).property("prop8", "A7O9UQNVJLGHPnw5Wp").property("prop24", -1810488431).property("prop22", Double.NaN).property("prop29", "L4").property("prop7", -1.336342769131777e+18).property("prop23", "RXpT1swL2").property("prop26", 1859362595).property("prop4", true).property("prop11", true).property("PersonalId", 9)
   hugegraph.traversal().addV("Vlabel5").property("prop1", "mbAaFCrSJ96v76GFiLl").property("prop4", false).property("prop26", -302190551).property("prop25", 3921144075800812662).property("prop27", -7971515220538690816).property("prop13", -3452745563952099798).property("prop14", 3258258459737664033).property("prop17", "1i97lBbK").property("prop3", -314941421).property("prop16", Double.NaN).property("prop6", 8883089620716412525).property("prop10", Double.NEGATIVE_INFINITY).property("prop11", false).property("prop9", -680333907).property("prop30", "VerysRYM8ia74yW").property("prop20", Double.NaN).property("prop18", true).property("prop24", -63484592).property("prop5", 6891113221005297716).property("prop8", "fobXK1M").property("prop19", -2058092105).property("PersonalId", 10)
   hugegraph.traversal().addE("Elabel2").from(__.V().where(__.values("PersonalId").is(eq(1)))).to(__.V().where(__.values("PersonalId").is(eq(1)))).property("prop21", true).property("prop5", 1707844009296903082).property("prop17", "nkHLKdVi1dy").property("prop1", "5").property("prop4", false).property("prop24", 1156057439).property("prop11", false).property("prop25", 9094006623768384918).property("prop15", -4673218734597878296).property("prop2", -107795515).property("prop6", -2716820695710705121).property("prop12", Double.POSITIVE_INFINITY).property("prop8", "hvz935").property("prop30", "ClEwMDsf1gFlA7RY").property("prop14", 6343048543953489838).property("prop18", false).property("prop19", -366942361).property("PersonalId", 1)
   hugegraph.traversal().addE("Elabel4").from(__.V().where(__.values("PersonalId").is(eq(6)))).to(__.V().where(__.values("PersonalId").is(eq(10)))).property("prop23", "V4tI9x7XG9H").property("prop21", true).property("prop26", 1506639777).property("prop20", 3.275793778898388e+18).property("prop3", 302364994).property("prop6", 2647284377539628074).property("prop5", 32605618342628034).property("prop11", false).property("prop15", 7601076853617602194).property("prop2", 922641422).property("prop14", 5617215672582937706).property("prop19", -1503958750).property("prop7", 1.8117150054957914e+18).property("prop17", "MOEa6Ol2Rl1r1").property("prop30", "kf").property("prop25", 2583541369701051594).property("prop13", 2376961566685308645).property("prop10", Double.POSITIVE_INFINITY).property("prop8", "7lIjCyZVZOP2jAan7JO").property("prop27", -7854082104979565474).property("PersonalId", 2)
   hugegraph.traversal().addE("Elabel3").from(__.V().where(__.values("PersonalId").is(eq(3)))).to(__.V().where(__.values("PersonalId").is(eq(9)))).property("prop4", false).property("prop5", 4596965996526895568).property("prop10", Double.POSITIVE_INFINITY).property("prop21", false).property("prop27", -855847384600878519).property("prop26", 398814431).property("prop13", 5471720552003302955).property("prop3", 679663901).property("prop16", Double.NaN).property("prop1", "YI7zimY2p5cZWN").property("prop29", "Lxcx8yn4lB").property("prop20", 5.6760696044803736e+16).property("PersonalId", 3)
   hugegraph.traversal().addE("Elabel1").from(__.V().where(__.values("PersonalId").is(eq(8)))).to(__.V().where(__.values("PersonalId").is(eq(2)))).property("prop9", 1154707988).property("prop27", -149587271770253933).property("prop30", "TvPxaZtx3H5kGraYNCH").property("prop24", -1395159374).property("PersonalId", 4)
   hugegraph.traversal().addE("Elabel10").from(__.V().where(__.values("PersonalId").is(eq(8)))).to(__.V().where(__.values("PersonalId").is(eq(7)))).property("prop17", "E1bHm05wQCpQl").property("prop22", -5.1489349393532224e+17).property("prop3", 1159312330).property("prop4", true).property("PersonalId", 5)
   hugegraph.traversal().addE("Elabel7").from(__.V().where(__.values("PersonalId").is(eq(2)))).to(__.V().where(__.values("PersonalId").is(eq(6)))).property("prop24", -1508200455).property("prop19", -123224141).property("prop28", Double.NEGATIVE_INFINITY).property("prop21", false).property("prop13", 1753256903547260721).property("prop16", Double.POSITIVE_INFINITY).property("prop27", 4696209101798884227).property("prop7", Double.NaN).property("prop26", -876342536).property("prop5", -415432320747356601).property("prop25", 3443365848075859557).property("prop30", "hhdJe").property("prop8", "1qqwB7").property("prop11", false).property("prop22", -1.5778225471247123e+17).property("prop18", false).property("prop6", -6686090509867561694).property("prop1", "mUGcw20HX").property("prop17", "q8up8GUfmJdUTG").property("prop9", -474668301).property("prop29", "m9U1fcwd6xyXMJ").property("prop4", true).property("prop14", -2036909695298043487).property("prop23", "Ufx5It").property("prop12", Double.POSIT
 IVE_INFINITY).property("prop3", -140275104).property("prop15", -1165756432857652884).property("prop10", Double.NEGATIVE_INFINITY).property("PersonalId", 6)
   hugegraph.traversal().addE("Elabel7").from(__.V().where(__.values("PersonalId").is(eq(6)))).to(__.V().where(__.values("PersonalId").is(eq(2)))).property("prop24", -1355104291).property("prop19", 1190646435).property("prop28", -1.4787226323417925e+18).property("prop21", false).property("prop13", -7673085103827407983).property("prop16", Double.POSITIVE_INFINITY).property("prop27", -6315131303651897235).property("prop7", 2.7859164127494656e+18).property("prop26", 1674517769).property("prop5", -8316691218047949166).property("prop25", -9088617988066127951).property("prop30", "whsH").property("prop8", "1jW0z6KNN6mfB").property("prop11", true).property("prop22", Double.NEGATIVE_INFINITY).property("prop18", true).property("prop6", 237474230610916282).property("prop1", "c").property("prop17", "wXf93JkIZVAfrzZ").property("prop9", -354757896).property("prop29", "eM").property("prop4", false).property("prop14", 3159013376927020328).property("prop23", "TUvvBrFMawRaNDCjMaV").property("prop12", 
 Double.POSITIVE_INFINITY).property("prop3", 2026261022).property("prop15", 7491432186343178188).property("prop10", Double.NaN).property("PersonalId", 7)
   hugegraph.traversal().addE("Elabel8").from(__.V().where(__.values("PersonalId").is(eq(5)))).to(__.V().where(__.values("PersonalId").is(eq(5)))).property("prop13", -8275955306196250607).property("prop2", 1985671342).property("prop23", "ha2jiGaUU3O3nN5").property("prop30", "VbwtRkHUnk7GsTu").property("prop25", 401985491688332403).property("prop14", 6896226750843442563).property("prop8", "6DF").property("prop19", -1952940535).property("prop16", Double.POSITIVE_INFINITY).property("prop27", -1555983697438197322).property("prop17", "I6J4lnH8BGtFnDwee").property("prop5", -3463810883215443736).property("prop29", "pilchHJK").property("prop26", 1558704502).property("prop28", Double.NaN).property("prop15", -3377065882557713905).property("PersonalId", 8
   hugegraph.traversal().addE("Elabel10").from(__.V().where(__.values("PersonalId").is(eq(5)))).to(__.V().where(__.values("PersonalId").is(eq(4)))).property("prop17", "dJxbNJgjf2q").property("prop22", 2.541946994702177e+18).property("prop3", 69765845).property("prop4", true).property("PersonalId", 9
   hugegraph.traversal().addE("Elabel4").from(__.V().where(__.values("PersonalId").is(eq(6)))).to(__.V().where(__.values("PersonalId").is(eq(10)))).property("prop23", "0EcQyH5").property("prop21", true).property("prop26", -1890552865).property("prop20", 3.3334518465155546e+17).property("prop3", -1832602498).property("prop6", 7187138286146344140).property("prop5", 7476135002424289304).property("prop11", false).property("prop15", -554200645802040465).property("prop2", 1766772974).property("prop14", 1358234442500525403).property("prop19", 1525091237).property("prop7", Double.NEGATIVE_INFINITY).property("prop17", "ZUyiQXK2rwF").property("prop30", "jJYyPTb4WpBvtVq4G").property("prop25", -1048090377011646911).property("prop13", 6229095382169165769).property("prop10", -5271493560632983.0).property("prop8", "D").property("prop27", 7816839963792611358).property("PersonalId", 10)
   hugegraph.traversal().addE("Elabel6").from(__.V().where(__.values("PersonalId").is(eq(9)))).to(__.V().where(__.values("PersonalId").is(eq(2)))).property("prop1", "z").property("prop15", -4309787436958273305).property("prop28", Double.NEGATIVE_INFINITY).property("prop29", "8rseF5IPH9Cxn").property("prop5", 3217201439942346428).property("prop13", 1158046545881315275).property("prop18", false).property("prop30", "XM6aS1T4RL").property("prop27", 5285906948845690245).property("prop26", -866794157).property("prop2", 1011411922).property("prop24", 1189885787).property("prop6", -5657221854963320002).property("prop14", 7960749365089475318).property("PersonalId", 11)
   hugegraph.traversal().addE("Elabel3").from(__.V().where(__.values("PersonalId").is(eq(9)))).to(__.V().where(__.values("PersonalId").is(eq(3)))).property("prop4", true).property("prop5", 8057581743024078635).property("prop10", -1.4374413026155592e+18).property("prop21", false).property("prop27", 764772214611409024).property("prop26", -2013266537).property("prop13", 4678676248655000514).property("prop3", -267742551).property("prop16", -5.356392512726208e+17).property("prop1", "wY43jhGt").property("prop29", "9fq2ClZrR4CUzoI").property("prop20", -1.713310515879949e+18).property("PersonalId", 12)
   hugegraph.traversal().addE("Elabel4").from(__.V().where(__.values("PersonalId").is(eq(2)))).to(__.V().where(__.values("PersonalId").is(eq(8)))).property("prop23", "79kS1OWFL5t").property("prop21", true).property("prop26", -1723588187).property("prop20", Double.POSITIVE_INFINITY).property("prop3", 147684396).property("prop6", 4890718321060968338).property("prop5", 2817544315523392110).property("prop11", false).property("prop15", 2034967272008934273).property("prop2", -461984485).property("prop14", 7705627097549652990).property("prop19", -1552521305).property("prop7", Double.POSITIVE_INFINITY).property("prop17", "tFHJYY26").property("prop30", "KYQKjiL0gE6").property("prop25", 6499097937207161589).property("prop13", 2885806879939489484).property("prop10", Double.NaN).property("prop8", "oIem4iGgDq2ups").property("prop27", 2426316584774960143).property("PersonalId", 13)
   hugegraph.traversal().addE("Elabel9").from(__.V().where(__.values("PersonalId").is(eq(4)))).to(__.V().where(__.values("PersonalId").is(eq(4)))).property("prop29", "AEvJVyVqPN").property("prop18", false).property("prop5", -1500844421266429570).property("prop3", -948888822).property("prop27", 8125210939905600662).property("prop10", Double.POSITIVE_INFINITY).property("prop16", Double.NEGATIVE_INFINITY).property("prop2", 2145790526).property("prop17", "C2sj9eGO").property("prop7", 4.411603805863977e+18).property("prop9", 1849098750).property("prop25", 4907917275701073933).property("prop21", true).property("prop4", false).property("prop8", "hy3A9TggITJxyqr").property("prop14", 1030531688308687528).property("prop20", Double.NEGATIVE_INFINITY).property("prop6", 7196202901445986931).property("PersonalId", 14)
   hugegraph.traversal().addE("Elabel1").from(__.V().where(__.values("PersonalId").is(eq(10)))).to(__.V().where(__.values("PersonalId").is(eq(6)))).property("prop9", -461148773).property("prop27", 5255456247278740220).property("prop30", "O0rezk").property("prop24", 1811482422).property("PersonalId", 15)
   hugegraph.traversal().addE("Elabel4").from(__.V().where(__.values("PersonalId").is(eq(2)))).to(__.V().where(__.values("PersonalId").is(eq(5)))).property("prop23", "pyNe2oLf").property("prop21", false).property("prop26", -1060875413).property("prop20", -4.970322693324065e+18).property("prop3", -1199034266).property("prop6", -2632844854157731284).property("prop5", 4520096907731852127).property("prop11", false).property("prop15", 7471654817897032560).property("prop2", -1865725672).property("prop14", 8303882718528380636).property("prop19", -2042146924).property("prop7", 2.052135811544549e+16).property("prop17", "XeEUd86bwZQMYj").property("prop30", "rlMCawKyZ10m1tgskb").property("prop25", 7086540862282353870).property("prop13", 1293422836226295401).property("prop10", -7.596469048572981e+18).property("prop8", "sG4Rxolq").property("prop27", -1081543790110703409).property("PersonalId", 16)
   hugegraph.traversal().addE("Elabel9").from(__.V().where(__.values("PersonalId").is(eq(7)))).to(__.V().where(__.values("PersonalId").is(eq(7)))).property("prop29", "yV1rVBCS").property("prop18", false).property("prop5", 3625982337954845207).property("prop3", -440099339).property("prop27", -5089478705528322058).property("prop10", Double.POSITIVE_INFINITY).property("prop16", Double.NEGATIVE_INFINITY).property("prop2", 611925940).property("prop17", "40nHFy0Vl3B").property("prop7", -7.170620509706383e+17).property("prop9", 1132414864).property("prop25", -28237050270894925).property("prop21", true).property("prop4", false).property("prop8", "Hlny319").property("prop14", 1967305972167492680).property("prop20", Double.NEGATIVE_INFINITY).property("prop6", 1068039119928652159).property("PersonalId", 17)
   hugegraph.traversal().addE("Elabel6").from(__.V().where(__.values("PersonalId").is(eq(9)))).to(__.V().where(__.values("PersonalId").is(eq(6)))).property("prop1", "F0h6E").property("prop15", -831121792844469586).property("prop28", 4.412904344663686e+17).property("prop29", "SLihBXOOVegoUQY1").property("prop5", 8503002895433270774).property("prop13", 5050195879780794752).property("prop18", true).property("prop30", "DopOKXQnV").property("prop27", 5830173400928781092).property("prop26", 1297336618).property("prop2", 1597082969).property("prop24", -1512366428).property("prop6", 1972827930890600009).property("prop14", 9186570262114442308).property("PersonalId", 18)
   hugegraph.traversal().addE("Elabel4").from(__.V().where(__.values("PersonalId").is(eq(6)))).to(__.V().where(__.values("PersonalId").is(eq(8)))).property("prop23", "Hafd").property("prop21", true).property("prop26", -2008805551).property("prop20", Double.NEGATIVE_INFINITY).property("prop3", 1132418362).property("prop6", -3261568048088646301).property("prop5", 1609605918969334893).property("prop11", true).property("prop15", 781492881901699645).property("prop2", -948127926).property("prop14", 5055364405219942346).property("prop19", 1269348992).property("prop7", -2.529976816955848e+18).property("prop17", "X2F1V32a6xGR2").property("prop30", "UuAXvMrUEyo").property("prop25", -5386437379193776427).property("prop13", -3973588499393157914).property("prop10", -4.243745876497132e+16).property("prop8", "kmSbJLUXWNp").property("prop27", -2108216972490527544).property("PersonalId", 19)
   hugegraph.traversal().addE("Elabel6").from(__.V().where(__.values("PersonalId").is(eq(9)))).to(__.V().where(__.values("PersonalId").is(eq(6)))).property("prop1", "8oUFWrTdK8JUufpP3XlU").property("prop15", -7743757784570331255).property("prop28", Double.NEGATIVE_INFINITY).property("prop29", "oVG").property("prop5", -4996263206099658964).property("prop13", 6137074516079791968).property("prop18", true).property("prop30", "DJOR4o3IVPRS136aa3M0").property("prop27", 7150182844901446145).property("prop26", 1708740198).property("prop2", 1079181906).property("prop24", -1283784170).property("prop6", -8020097432610855854).property("prop14", 961262798147216611).property("PersonalId", 20)
   hugegraph.traversal().addE("Elabel3").from(__.V().where(__.values("PersonalId").is(eq(3)))).to(__.V().where(__.values("PersonalId").is(eq(9)))).property("prop4", true).property("prop5", -603052218747560830).property("prop10", 3.9137973144605373e+18).property("prop21", false).property("prop27", 5023178054466215632).property("prop26", 891909301).property("prop13", -6138436926752986999).property("prop3", 911691371).property("prop16", Double.NEGATIVE_INFINITY).property("prop1", "mwGK").property("prop29", "HR9BYmHVHxKaZ0UH").property("prop20", Double.NEGATIVE_INFINITY).property("PersonalId", 21)
   hugegraph.traversal().addE("Elabel10").from(__.V().where(__.values("PersonalId").is(eq(10)))).to(__.V().where(__.values("PersonalId").is(eq(4)))).property("prop17", "iuPl3oqb65xrDB").property("prop22", -3.368229525774199e+18).property("prop3", -993996620).property("prop4", false).property("PersonalId", 22)
   hugegraph.traversal().addE("Elabel9").from(__.V().where(__.values("PersonalId").is(eq(7)))).to(__.V().where(__.values("PersonalId").is(eq(7)))).property("prop29", "ZSk").property("prop18", false).property("prop5", 5769875596246949925).property("prop3", 1653517711).property("prop27", 1864708998976185164).property("prop10", 2.2489121241939725e+18).property("prop16", -2.479423526674125e+18).property("prop2", -1246275544).property("prop17", "P2LZzhr0DYvV5qJXzZo").property("prop7", 2.263442595797173e+16).property("prop9", 972233300).property("prop25", -3247687743627482985).property("prop21", false).property("prop4", true).property("prop8", "p4s").property("prop14", 828073165561193399).property("prop20", Double.NEGATIVE_INFINITY).property("prop6", -1147608116317470418).property("PersonalId", 23)
   hugegraph.traversal().addE("Elabel9").from(__.V().where(__.values("PersonalId").is(eq(4)))).to(__.V().where(__.values("PersonalId").is(eq(7)))).property("prop29", "rwCLVNgZZVYxyUbKh4").property("prop18", false).property("prop5", 3860639464308953799).property("prop3", -654471369).property("prop27", -8812628280623562811).property("prop10", Double.NaN).property("prop16", Double.NaN).property("prop2", -2090513151).property("prop17", "cE95Ry4Mn").property("prop7", 2.8931829490944056e+18).property("prop9", 1856212776).property("prop25", 5800485221489251777).property("prop21", false).property("prop4", true).property("prop8", "mj73z").property("prop14", -5353602281981117297).property("prop20", Double.POSITIVE_INFINITY).property("prop6", 7589777540913232784).property("PersonalId", 24)
   hugegraph.traversal().addE("Elabel8").from(__.V().where(__.values("PersonalId").is(eq(10)))).to(__.V().where(__.values("PersonalId").is(eq(10)))).property("prop13", 1225604630503712667).property("prop2", -436236533).property("prop23", "1P6").property("prop30", "jlN87Y7").property("prop25", -8832957254849764694).property("prop14", 6355471465963580913).property("prop8", "jGFWdLjBqqueQZOqm").property("prop19", 1851261786).property("prop16", -2.183560833700129e+18).property("prop27", 5944358773133597019).property("prop17", "4XgcqCspo94Dgjsu6LaK").property("prop5", 4986151600148597585).property("prop29", "yYwC9zDebnbuMF").property("prop26", 202185680).property("prop28", 5.783137430295561e+18).property("prop15", -8760551788907359005).property("PersonalId", 25)
   hugegraph.traversal().addE("Elabel2").from(__.V().where(__.values("PersonalId").is(eq(1)))).to(__.V().where(__.values("PersonalId").is(eq(1)))).property("prop21", false).property("prop5", -8735443068989706994).property("prop17", "NJZ9H").property("prop1", "4CEqYS7oiVhn").property("prop4", true).property("prop24", -877035179).property("prop11", true).property("prop25", 1812973121361680281).property("prop15", 1895881042089756404).property("prop2", -1077724621).property("prop6", 8380402342297037078).property("prop12", Double.NEGATIVE_INFINITY).property("prop8", "BCN4GY").property("prop30", "7GITv2vqdB5F").property("prop14", 3765481020000104065).property("prop18", false).property("prop19", -575029330).property("PersonalId", 26)
   hugegraph.traversal().addE("Elabel5").from(__.V().where(__.values("PersonalId").is(eq(10)))).to(__.V().where(__.values("PersonalId").is(eq(10)))).property("prop26", -1205550699).property("prop30", "zqZgKzsIyz").property("prop24", -783905160).property("prop18", false).property("prop25", 5850203856773201485).property("prop8", "AKxRq214b0MI").property("prop19", 406436638).property("prop1", "a").property("prop7", Double.NEGATIVE_INFINITY).property("prop14", 5858332512706129150).property("prop22", Double.POSITIVE_INFINITY).property("prop5", -589414252146704763).property("prop21", false).property("prop17", "amTPpsFlNVFLDkyg").property("prop15", 5275455306939961029).property("prop23", "Ejix").property("prop12", 3.3307869207031183e+18).property("PersonalId", 27)
   hugegraph.traversal().addE("Elabel5").from(__.V().where(__.values("PersonalId").is(eq(10)))).to(__.V().where(__.values("PersonalId").is(eq(8)))).property("prop26", 1270133921).property("prop30", "y4aV").property("prop24", -1209654389).property("prop18", true).property("prop25", -8335336928049491584).property("prop8", "JpyiMGyI0XKw").property("prop19", -777048019).property("prop1", "zYMr20YTnnW").property("prop7", Double.POSITIVE_INFINITY).property("prop14", -1571987732461031435).property("prop22", 3.8831955835783296e+17).property("prop5", -5319861543786747091).property("prop21", false).property("prop17", "hafi5E").property("prop15", -5055999965906875162).property("prop23", "RyJg").property("prop12", Double.POSITIVE_INFINITY).property("PersonalId", 28)
   hugegraph.traversal().addE("Elabel9").from(__.V().where(__.values("PersonalId").is(eq(4)))).to(__.V().where(__.values("PersonalId").is(eq(7)))).property("prop29", "tOusOgeTnXb8947zdRD").property("prop18", false).property("prop5", -7157944407980982576).property("prop3", -1314957102).property("prop27", 6818543207559054414).property("prop10", Double.POSITIVE_INFINITY).property("prop16", 3.611239681500726e+18).property("prop2", 199634917).property("prop17", "inL9xwfSpBd0Ny9I7").property("prop7", -5.199123187069016e+17).property("prop9", 92080269).property("prop25", -6206630091805294132).property("prop21", true).property("prop4", true).property("prop8", "jHk2C0GHbz").property("prop14", 4795715578369052199).property("prop20", Double.POSITIVE_INFINITY).property("prop6", -5955158315635232938).property("PersonalId", 29)
   hugegraph.traversal().addE("Elabel2").from(__.V().where(__.values("PersonalId").is(eq(1)))).to(__.V().where(__.values("PersonalId").is(eq(1)))).property("prop21", false).property("prop5", 8214996990896916935).property("prop17", "zSZ73VJUGeLKW").property("prop1", "mXfPs1FLhatIr5HqTg").property("prop4", true).property("prop24", 636355698).property("prop11", false).property("prop25", -1906469909072174101).property("prop15", 6914295249081827038).property("prop2", 134372572).property("prop6", -3802544017774537109).property("prop12", Double.NaN).property("prop8", "zf4GTHdR").property("prop30", "N4KtOEkfeigwIhssK5").property("prop14", 3290785053443334481).property("prop18", true).property("prop19", 1744759031).property("PersonalId", 30)
   hugegraph.traversal().addE("Elabel5").from(__.V().where(__.values("PersonalId").is(eq(5)))).to(__.V().where(__.values("PersonalId").is(eq(5)))).property("prop26", 25701455).property("prop30", "zHt").property("prop24", 410646530).property("prop18", true).property("prop25", 211575584610710397).property("prop8", "8O6qcMAIklE").property("prop19", -836966855).property("prop1", "o5Y").property("prop7", Double.NaN).property("prop14", 5418291071854270269).property("prop22", Double.NEGATIVE_INFINITY).property("prop5", -6974506773825558908).property("prop21", false).property("prop17", "1LnmSyvHfYxnyb77x").property("prop15", 8752276846878782215).property("prop23", "V").property("prop12", -2.846005978574856e+18).property("PersonalId", 31)
   hugegraph.traversal().addE("Elabel3").from(__.V().where(__.values("PersonalId").is(eq(9)))).to(__.V().where(__.values("PersonalId").is(eq(3)))).property("prop4", false).property("prop5", -3855931438798535507).property("prop10", -2.3907477480017444e+18).property("prop21", false).property("prop27", 3678895020027669399).property("prop26", 285964742).property("prop13", 3036801064088669688).property("prop3", -1423697404).property("prop16", -2.8359068793465093e+18).property("prop1", "OzgorgSKI").property("prop29", "qJxR8KDtkXyveg").property("prop20", Double.POSITIVE_INFINITY).property("PersonalId", 32)
   hugegraph.traversal().addE("Elabel1").from(__.V().where(__.values("PersonalId").is(eq(8)))).to(__.V().where(__.values("PersonalId").is(eq(6)))).property("prop9", 1926658376).property("prop27", 4864045348000384468).property("prop30", "J7XE").property("prop24", 1073613523).property("PersonalId", 33)
   hugegraph.traversal().addE("Elabel1").from(__.V().where(__.values("PersonalId").is(eq(8)))).to(__.V().where(__.values("PersonalId").is(eq(2)))).property("prop9", 1105503498).property("prop27", 2169847850434381901).property("prop30", "OIPe7").property("prop24", 877343858).property("PersonalId", 34)
   hugegraph.traversal().addE("Elabel3").from(__.V().where(__.values("PersonalId").is(eq(9)))).to(__.V().where(__.values("PersonalId").is(eq(3)))).property("prop4", true).property("prop5", 8790344185330403772).property("prop10", Double.NaN).property("prop21", false).property("prop27", 6680468366741638259).property("prop26", 1376449121).property("prop13", 8380288153027498703).property("prop3", 1007845648).property("prop16", 8.684296135764991e+17).property("prop1", "vKpH8C8Fd").property("prop29", "7Nqo9P6z").property("prop20", Double.POSITIVE_INFINITY).property("PersonalId", 35)
   hugegraph.traversal().addE("Elabel8").from(__.V().where(__.values("PersonalId").is(eq(10)))).to(__.V().where(__.values("PersonalId").is(eq(8)))).property("prop13", -7004301531216178354).property("prop2", 1969517599).property("prop23", "aVs0ISCY97PVtD9Za").property("prop30", "Lx").property("prop25", -7670854696928834133).property("prop14", -3860378361768457432).property("prop8", "FqAmPko0dV").property("prop19", -158178668).property("prop16", -6.02491401489873e+17).property("prop27", 1379095371425910386).property("prop17", "4Ob5Z1XT6Zd5kD").property("prop5", 6314677288391120768).property("prop29", "MhSizaFkdZwhlrRS").property("prop26", -998206347).property("prop28", 9.744261891311076e+17).property("prop15", 1596359758570302414).property("PersonalId", 36)
   hugegraph.traversal().addE("Elabel9").from(__.V().where(__.values("PersonalId").is(eq(7)))).to(__.V().where(__.values("PersonalId").is(eq(7)))).property("prop29", "MB69FuLQiP9CezY").property("prop18", true).property("prop5", 6966900503110676130).property("prop3", -1851789969).property("prop27", -3261493916033696672).property("prop10", Double.NEGATIVE_INFINITY).property("prop16", 2.279048935239649e+18).property("prop2", -1755037297).property("prop17", "EfRX2LyoXWVx0").property("prop7", Double.NEGATIVE_INFINITY).property("prop9", -667523778).property("prop25", -3095288284476864339).property("prop21", true).property("prop4", true).property("prop8", "sk").property("prop14", -3469749460086870806).property("prop20", Double.NEGATIVE_INFINITY).property("prop6", 4254488696530906041).property("PersonalId", 37)
   hugegraph.traversal().addE("Elabel6").from(__.V().where(__.values("PersonalId").is(eq(3)))).to(__.V().where(__.values("PersonalId").is(eq(6)))).property("prop1", "rdQuNxLj").property("prop15", 9131417781076151913).property("prop28", 3.7203519472333865e+18).property("prop29", "gN").property("prop5", -3022849336414122457).property("prop13", -3181757471707859355).property("prop18", false).property("prop30", "gSRlntshTNiRYxg2V90y").property("prop27", -4300575718003394108).property("prop26", 1993021334).property("prop2", 628544076).property("prop24", -1391848639).property("prop6", -7141526723539328275).property("prop14", 1419539338671556388).property("PersonalId", 38)
   hugegraph.traversal().addE("Elabel5").from(__.V().where(__.values("PersonalId").is(eq(5)))).to(__.V().where(__.values("PersonalId").is(eq(5)))).property("prop26", 1451483180).property("prop30", "1lI").property("prop24", 524885749).property("prop18", true).property("prop25", -1625657640647340688).property("prop8", "UKjP").property("prop19", -2038775567).property("prop1", "c9").property("prop7", Double.NEGATIVE_INFINITY).property("prop14", -5546039942284720964).property("prop22", Double.NEGATIVE_INFINITY).property("prop5", 2710516609219486813).property("prop21", false).property("prop17", "g9DpRB1Uo0ma0kGVT").property("prop15", 1521184013057249544).property("prop23", "k5").property("prop12", Double.POSITIVE_INFINITY).property("PersonalId", 39)
   hugegraph.traversal().addE("Elabel4").from(__.V().where(__.values("PersonalId").is(eq(6)))).to(__.V().where(__.values("PersonalId").is(eq(10)))).property("prop23", "iQsgJK0lq5TET").property("prop21", false).property("prop26", -791654297).property("prop20", 1.2786788538403691e+17).property("prop3", -433173775).property("prop6", 4282414491404240977).property("prop5", -5445885976651940058).property("prop11", true).property("prop15", -3060446052481041471).property("prop2", 1928927376).property("prop14", 7816633667219594697).property("prop19", -1426893306).property("prop7", -3.17954741679657e+18).property("prop17", "DIqeIoXI").property("prop30", "P8ee5v0jLJEFextk7").property("prop25", -1660444337112409910).property("prop13", 6761858307570779336).property("prop10", 2.2264159325843738e+18).property("prop8", "WMeZwMxKEsOCkKOwZUUL").property("prop27", -4929376147804722746).property("PersonalId", 40)
   hugegraph.traversal().addE("Elabel1").from(__.V().where(__.values("PersonalId").is(eq(5)))).to(__.V().where(__.values("PersonalId").is(eq(2)))).property("prop9", 18393649).property("prop27", -303263750736376994).property("prop30", "F5FGViRr2i0gVgAM2hB").property("prop24", 779880283).property("PersonalId", 41)
   hugegraph.traversal().addE("Elabel1").from(__.V().where(__.values("PersonalId").is(eq(5)))).to(__.V().where(__.values("PersonalId").is(eq(6)))).property("prop9", -351095402).property("prop27", -1881983977945123291).property("prop30", "Vj6j6l6opas5Gim").property("prop24", 1623847008).property("PersonalId", 42)
   hugegraph.traversal().addE("Elabel9").from(__.V().where(__.values("PersonalId").is(eq(7)))).to(__.V().where(__.values("PersonalId").is(eq(4)))).property("prop29", "pivEPAKKj2pO").property("prop18", false).property("prop5", 5527050410209024579).property("prop3", 342804804).property("prop27", -6770300503155218418).property("prop10", -1.4366315369149758e+17).property("prop16", -3.684917554507801e+18).property("prop2", 1826846832).property("prop17", "ce8vXVZpaV4Xpi2LT").property("prop7", -1.2834642965056234e+17).property("prop9", -110785897).property("prop25", 2374225954913233861).property("prop21", true).property("prop4", false).property("prop8", "2LlJEmIZYY").property("prop14", -8964554184944488199).property("prop20", 5.078530377413512e+18).property("prop6", -1506370225764354043).property("PersonalId", 43)
   hugegraph.traversal().addE("Elabel2").from(__.V().where(__.values("PersonalId").is(eq(1)))).to(__.V().where(__.values("PersonalId").is(eq(1)))).property("prop21", true).property("prop5", -4998154765879931387).property("prop17", "Iu2z99tXW0CHFNe8YW").property("prop1", "uUbyQ").property("prop4", true).property("prop24", 835815711).property("prop11", false).property("prop25", -4793384679530050388).property("prop15", -5490116998739167525).property("prop2", 1212021725).property("prop6", 164704474507541579).property("prop12", Double.NaN).property("prop8", "xn").property("prop30", "sHSbThKodz").property("prop14", -4619376441565398181).property("prop18", true).property("prop19", 860160514).property("PersonalId", 44)
   hugegraph.traversal().addE("Elabel2").from(__.V().where(__.values("PersonalId").is(eq(1)))).to(__.V().where(__.values("PersonalId").is(eq(1)))).property("prop21", false).property("prop5", 5108540774623574509).property("prop17", "v").property("prop1", "716COBMk4VCSh44Mwghq").property("prop4", false).property("prop24", -1125007123).property("prop11", true).property("prop25", 3420038557196789862).property("prop15", 1208608832580106047).property("prop2", 1507255733).property("prop6", 3067663045144045446).property("prop12", 2.90811637124045e+18).property("prop8", "g6PYwzsQzzH4e04AsY").property("prop30", "f7lCTtKG5ripw6g7SqCx").property("prop14", -2196183156894217856).property("prop18", true).property("prop19", 415541158).property("PersonalId", 45)
   hugegraph.traversal().addE("Elabel4").from(__.V().where(__.values("PersonalId").is(eq(6)))).to(__.V().where(__.values("PersonalId").is(eq(5)))).property("prop23", "8yY4Ae9I").property("prop21", true).property("prop26", -1910070948).property("prop20", -2.2512517897730621e+18).property("prop3", 1192778828).property("prop6", -6532916680644147134).property("prop5", 6844341358571450899).property("prop11", false).property("prop15", -8872097008085991554).property("prop2", 158635513).property("prop14", 4062398411506402248).property("prop19", -409763042).property("prop7", -3.879011440051239e+17).property("prop17", "HpGDkBrn").property("prop30", "aAzaGmUgXoNSeO5m9").property("prop25", 7165104441403965626).property("prop13", 4940416663179603380).property("prop10", Double.POSITIVE_INFINITY).property("prop8", "WrOFqJk1fqVT874UFqFR").property("prop27", -5604316030807621326).property("PersonalId", 46)
   hugegraph.traversal().addE("Elabel2").from(__.V().where(__.values("PersonalId").is(eq(1)))).to(__.V().where(__.values("PersonalId").is(eq(1)))).property("prop21", false).property("prop5", 4872982511588720847).property("prop17", "NNnTrmD6XX").property("prop1", "J9lM4jjbY6mSaS").property("prop4", true).property("prop24", -1644655528).property("prop11", true).property("prop25", -8447945558822514778).property("prop15", -7160363786809664419).property("prop2", 1870416569).property("prop6", -4898581878183232013).property("prop12", Double.NEGATIVE_INFINITY).property("prop8", "jGhH3QHam5XTKCb3d").property("prop30", "Is9bzub5bvTntQQ3Lt").property("prop14", -2165669913894497065).property("prop18", false).property("prop19", 1160431263).property("PersonalId", 47)
   hugegraph.traversal().addE("Elabel5").from(__.V().where(__.values("PersonalId").is(eq(10)))).to(__.V().where(__.values("PersonalId").is(eq(5)))).property("prop26", 1098394632).property("prop30", "ISNbL").property("prop24", 1158952699).property("prop18", true).property("prop25", -7426125077058184763).property("prop8", "FLdN8Yl").property("prop19", -1622598336).property("prop1", "yWZXNZQA").property("prop7", Double.NaN).property("prop14", 6307060631879221952).property("prop22", -4.5968354096006124e+18).property("prop5", -5504936097122946180).property("prop21", true).property("prop17", "qziQ").property("prop15", 6726797396625961527).property("prop23", "2MVta").property("prop12", Double.NEGATIVE_INFINITY).property("PersonalId", 48)
   hugegraph.traversal().addE("Elabel1").from(__.V().where(__.values("PersonalId").is(eq(5)))).to(__.V().where(__.values("PersonalId").is(eq(6)))).property("prop9", -1775085055).property("prop27", -594199799287027338).property("prop30", "uwqDX8OMKHY").property("prop24", 883467727).property("PersonalId", 49)
   hugegraph.traversal().addE("Elabel3").from(__.V().where(__.values("PersonalId").is(eq(9)))).to(__.V().where(__.values("PersonalId").is(eq(3)))).property("prop4", true).property("prop5", -4134176907014448106).property("prop10", 2.924630334875263e+18).property("prop21", true).property("prop27", -7397786253392669920).property("prop26", 52038602).property("prop13", 7560977761417590168).property("prop3", -154476588).property("prop16", -1.1770374375318323e+18).property("prop1", "wa5ioCJwMbuzu").property("prop29", "n").property("prop20", -2.498401149725381e+17).property("PersonalId", 50)
   ```
   
   
   ### Vertex/Edge example (问题点 / 边数据举例)
   
   _No response_
   
   ### Schema [VertexLabel, EdgeLabel, IndexLabel] (元数据结构)
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph] joyemang33 closed issue #2125: [Bug] Unexpected exceptions are triggered by comparing the aggregate of values that contains “NaN”, “Infinity” or “-Infinity”.

Posted by "joyemang33 (via GitHub)" <gi...@apache.org>.
joyemang33 closed issue #2125: [Bug] Unexpected exceptions are triggered by comparing the aggregate of values that contains “NaN”, “Infinity” or “-Infinity”.
URL: https://github.com/apache/incubator-hugegraph/issues/2125


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph] joyemang33 commented on issue #2125: [Bug] Unexpected exceptions are triggered by comparing the aggregate of values that contains “NaN”, “Infinity” or “-Infinity”.

Posted by "joyemang33 (via GitHub)" <gi...@apache.org>.
joyemang33 commented on issue #2125:
URL: https://github.com/apache/incubator-hugegraph/issues/2125#issuecomment-1453085636

   @javeme  Hi, After some discussion, I think the issue is totally caused by Gremlin (see [here](https://issues.apache.org/jira/projects/TINKERPOP/issues/TINKERPOP-2879)), not HugeGraph. I am going to close this issue, and sorry for any inconvenience it caused.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org