Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Match query with <> throws a QueryExecutionException #13062

Closed
llooFlashooll opened this issue Mar 10, 2023 · 1 comment
Closed

Match query with <> throws a QueryExecutionException #13062

llooFlashooll opened this issue Mar 10, 2023 · 1 comment
Assignees

Comments

@llooFlashooll
Copy link

We discovered a bug that Match query with <> throws a QueryExecutionException.

  • Neo4j version: 5.4.0
  • Operating system: macOS 13.2.1
  • API/Driver: Java

When I run the following query: MATCH (n:h) WHERE ((n.o0xl)%(n.o0xl))<>(n.o0xl) RETURN COUNT(n).
A QueryExecutionException is thrown without further message to identify the root cause.
In the stack trace, it reports the code locations at at org.neo4j.cypher.internal.runtime.interpreted.commands.predicates.Not.isMatch(Predicate.scala:162) and at org.neo4j.cypher.internal.runtime.interpreted.commands.predicates.Equals.isMatch(ComparablePredicate.scala:78), but I still don't know the reasons.

Expected behavior:

No exception should be expected to throw.

Actual behavior:

A QueryExecutionException is thrown. And I'm not really sure whether this problem should happen so I report this.

Caused by: org.neo4j.graphdb.QueryExecutionException
	at org.neo4j.kernel.impl.query.QueryExecutionKernelException.asUserException(QueryExecutionKernelException.java:32)
	at org.neo4j.cypher.internal.javacompat.ResultSubscriber.converted(ResultSubscriber.java:355)
	at org.neo4j.cypher.internal.javacompat.ResultSubscriber.assertNoErrors(ResultSubscriber.java:342)
	at org.neo4j.cypher.internal.javacompat.ResultSubscriber.fetchResults(ResultSubscriber.java:311)
	at org.neo4j.cypher.internal.javacompat.ResultSubscriber.nextFromSubscriber(ResultSubscriber.java:286)
	at org.neo4j.cypher.internal.javacompat.ResultSubscriber.fetchNextOrNull(ResultSubscriber.java:262)
	at org.neo4j.cypher.internal.javacompat.ResultSubscriber.fetchNextOrNull(ResultSubscriber.java:57)
	at org.neo4j.internal.helpers.collection.PrefetchingIterator.peek(PrefetchingIterator.java:56)
	at org.neo4j.internal.helpers.collection.PrefetchingIterator.hasNext(PrefetchingIterator.java:44)
	at java.base/java.util.Iterator.forEachRemaining(Iterator.java:132)
	at java.base/java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1845)
	at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509)
	at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
	at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921)
	at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
	at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682)
	at ch.cypherchecker.neo4j.Neo4JConnection.execute(Neo4JConnection.java:44)
	at ch.cypherchecker.neo4j.Neo4JQuery.executeAndGet(Neo4JQuery.java:52)
	... 3 more
Caused by: org.neo4j.kernel.impl.query.QueryExecutionKernelException
	... 20 more
Caused by: org.neo4j.exceptions.ArithmeticException
	at org.neo4j.cypher.operations.CypherMath.modulo(CypherMath.java:210)
	at org.neo4j.cypher.internal.runtime.interpreted.commands.expressions.Modulo.calc(Modulo.scala:27)
	at org.neo4j.cypher.internal.runtime.interpreted.commands.expressions.Arithmetics.applyWithValues(Expression.scala:86)
	at org.neo4j.cypher.internal.runtime.interpreted.commands.expressions.Arithmetics.apply(Expression.scala:80)
	at org.neo4j.cypher.internal.runtime.interpreted.commands.predicates.Equals.isMatch(ComparablePredicate.scala:78)
	at org.neo4j.cypher.internal.runtime.interpreted.commands.predicates.Not.isMatch(Predicate.scala:162)
	at org.neo4j.cypher.internal.runtime.interpreted.commands.predicates.CompositeBooleanPredicate.$anonfun$isMatch$2(Predicate.scala:141)
	at scala.util.Try$.apply(Try.scala:210)
	at org.neo4j.cypher.internal.runtime.interpreted.commands.predicates.CompositeBooleanPredicate.$anonfun$isMatch$1(Predicate.scala:141)
	at org.neo4j.cypher.internal.util.NonEmptyList.foldLeftLoop(NonEmptyList.scala:281)
	at org.neo4j.cypher.internal.util.NonEmptyList.foldLeft(NonEmptyList.scala:202)
	at org.neo4j.cypher.internal.util.NonEmptyList.foldLeft$(NonEmptyList.scala:201)
	at org.neo4j.cypher.internal.util.Fby.foldLeft(NonEmptyList.scala:358)
	at org.neo4j.cypher.internal.runtime.interpreted.commands.predicates.CompositeBooleanPredicate.isMatch(Predicate.scala:136)
	at org.neo4j.cypher.internal.runtime.interpreted.commands.predicates.Predicate.apply(Predicate.scala:101)
	at org.neo4j.cypher.internal.runtime.interpreted.commands.predicates.Predicate.apply(Predicate.scala:98)
	at org.neo4j.cypher.internal.runtime.interpreted.pipes.FilterPipe.$anonfun$internalCreateResults$1(FilterPipe.scala:34)
	at org.neo4j.cypher.internal.runtime.interpreted.pipes.FilterPipe.$anonfun$internalCreateResults$1$adapted(FilterPipe.scala:34)
	at org.neo4j.cypher.internal.runtime.ClosingIterator$$anon$3.innerHasNext(ClosingIterator.scala:185)
	at org.neo4j.cypher.internal.runtime.ClosingIterator.hasNext(ClosingIterator.scala:135)
	at org.neo4j.cypher.internal.runtime.interpreted.pipes.EagerAggregationPipe.internalCreateResults(EagerAggregationPipe.scala:39)
	at org.neo4j.cypher.internal.runtime.interpreted.pipes.PipeWithSource.computeDecoratedResult(Pipe.scala:92)
	at org.neo4j.cypher.internal.runtime.interpreted.pipes.PipeWithSource.createResults(Pipe.scala:81)
	at org.neo4j.cypher.internal.runtime.interpreted.pipes.PipeWithSource.computeDecoratedResult(Pipe.scala:91)
	at org.neo4j.cypher.internal.runtime.interpreted.pipes.PipeWithSource.createResults(Pipe.scala:81)
	at org.neo4j.cypher.internal.runtime.interpreted.PipeExecutionResult.request(PipeExecutionResult.scala:74)
	at org.neo4j.cypher.internal.result.StandardInternalExecutionResult.request(StandardInternalExecutionResult.scala:103)
	at org.neo4j.cypher.internal.result.ClosingExecutionResult.request(ClosingExecutionResult.scala:149)
	at org.neo4j.cypher.internal.javacompat.ResultSubscriber.fetchResults(ResultSubscriber.java:310)
	... 17 more
Caused by: java.lang.ArithmeticException

Steps to reproduce:

We feel sorry that because the database schema and data values are randomly generated by strings, it will cause inconvenience to your reviewing, but we believe the problem does exist.
Following the following graph data generation query, we can reproduce the bugs:

CREATE (T:tY {g:(((("J")+("AW"))+(+(0.8564963340759277)))+(-((0.6609650254249573)-(0.6866544485092163))))>=(substring(substring("",0x50fa2cbfb27576fa,-0x7cf7dbccb8fe291),+(-6307827634643816617),(-0o371771255456177177606)+(-0xa29a179b56e931e)))})
CREATE (mCR:gYXh {j:date('0785-03-05')}), (rh:h {o0xl:-0o467634553451570547463, qIQ5:duration('P509043641Y1494711481W133220638DT464037543M')}), (rh)-[l:tU97 {LaLL:date('0990-06-03')}]->(rh), (mCR)-[s:tU97 {LaLL:date('08720210'), J7:point({ x: 0.468054, y: 0.967245, z: 0.708472 })}]->(rh), (mCR)-[G8:C {eF:mCR.ngR8QVkiqz, txg:0.6813547015190125, gc:rh.qIQ5}]->(mCR)
MATCH (n:tY) WHERE (right(left(null,5991588264557755406),(7867680450510666278)%(0x585c412be675708f)))=(toLower((null)+(0.8269527554512024))) REMOVE n.g
MATCH (n:tY) WHERE NOT(n.g) REMOVE n.g RETURN n ORDER BY n.g 
SHOW FUNCTION
CREATE (O:tY {g:((ceil(0.5508073568344116)) IS NOT NULL)XOR((point({ x: 0.908714, y: 0.333486, z: 0.938381 }))<>(point({ x: 0.872026, y: 0.666554 })))}), (yuXy9:tY {g:false}), (zm:oEj {eO:+(toInteger(sqrt(0.6296752691268921)))}), (mRWdk:tY {g:false}), (zm)-[E:tU97 {LaLL:date('07011009'), J7:point({ x: 0.502150, y: 0.326959, z: 0.705898 })}]->(yuXy9), (zm)-[xi0ZPt1:tU97 {LaLL:E.LaLL, J7:point({ x: 0.766992, y: 0.469286 })}]->(zm), (zm)-[iiYYvO2:etncYH {byw:xi0ZPt1.LaLL, Y:exp(+(-(0.389130175113678))), L:duration.between(E.LaLL,E.LaLL)}]->(O), (zm)-[oV:C {gc:duration('P1409178518Y1063854618M309703752WT1033258178S')}]->(mRWdk), (O)-[a:tU97 {J7:point({ x: 0.218685, y: 0.383400, z: 0.366567 })}]->(yuXy9), (O)-[XK9EPK:etncYH {L:duration('P200830636M1584038042DT543404424M')}]->(O), (O)-[q:etncYH {Y:(oV.txg)*(oV.eF)}]->(mRWdk), (mRWdk)-[QM:tU97 {J7:point({ x: 0.741065, y: 0.120061 })}]->(zm), (mRWdk)-[Bo4:C {eF:0o451125205440730021450}]->(mRWdk)
CREATE (md:EaNJ {gyxe:point({ x: 0.863508, y: 0.320213, z: 0.572272 })})
CREATE (w:oEj {b5S8vZ0:time('02'), eO:-1043897465574027432}), (w)-[PO:etncYH {byw:date('03760923'), rZ:date('0543-11-23'), Y:0.7289518117904663, L:duration('P2126906786Y286576943M1380549308W1735389560DT1968980669M318188911S')}]->(w) RETURN * ORDER BY PO LIMIT 2518016759563965399
CREATE (e:s {egjaauF:duration('P164097433Y2063090410M1222933418W1998683886DT1992247329M605621581S'), AM7mON:time('15:14'), n_Sp1:false}), (W:gYXh {ngR8QVkiqz:((toInteger(e.S))/(size("j*,R/7")))+(+(toIntegerOrNull(0.8076100945472717))), YmOL4llRlZ:e.AM7mON}), (HgzUMnSrT:tY {g:false}), (hUekVB:tY {g:e.n_Sp1}), (Z2:oEj {b5S8vZ0:time('15'), eO:-0o650270504446274475412}), (e)-[KH:C {txg:(-((Z2.eO)*((0o262055756054772111202)+(-0x62675589695967e3))))*((ceil(-0o410455440142454537300))^((Z2.eO)%((0.6098237633705139)*(Z2.eO))))}]->(e), (e)-[OBT:tU97 {LaLL:date('07860609')}]->(Z2), (e)-[St:tU97 {LaLL:date('0080-09-16'), J7:point({ x: 0.647071, y: 0.123511 })}]->(hUekVB), (HgzUMnSrT)-[jYf:C {eF:-(-(KH.eF)), txg:KH.txg}]->(Z2), (HgzUMnSrT)-[lMaR95fw:tU97 {LaLL:date('06270424')}]->(hUekVB), (W)-[kI1e:tU97 {J7:point({ x: 0.520294, y: 0.865458 })}]->(e), (W)-[nmtGxJchy:C {txg:0.3684478998184204}]->(HgzUMnSrT), (W)-[Grn:tU97 {LaLL:date('0795-04-16'), J7:point({ x: 0.374913, y: 0.986804, z: 0.766775 })}]->(W), (Z2)-[K9IBN:etncYH {byw:OBT.LaLL, rZ:date('08650723'), Y:0.16192394495010376, L:jYf.gc}]->(Z2), (hUekVB)-[n:etncYH {byw:kI1e.LaLL, Y:(+(nmtGxJchy.txg))^(+(round(0.31937897205352783)))}]->(Z2), (hUekVB)-[jmYWXo5aI:C {eF:null, txg:nmtGxJchy.txg, gc:duration('PT2087294840H')}]->(hUekVB) RETURN *  LIMIT 3668228830578707442
CREATE (H4_Pegc:gYXh {ngR8QVkiqz:+((toIntegerOrNull(0.37864387035369873))%(-(toInteger("gb)#"))))}), (fDO7N:oEj {b5S8vZ0:time('05:03:32'), eO:0o200144174442552226324}), (fDO7N)-[P9:tU97 {LaLL:H4_Pegc.j, J7:point({ x: 0.374478, y: 0.525502 })}]->(H4_Pegc), (H4_Pegc)-[vv5ENTb_:C {eF:fDO7N.eO, txg:0.1956474781036377}]->(fDO7N) RETURN * 
CREATE (ND:oEj {eO:((((7441199467064659992)-(0o35502355633034524152))*(sign(0o465027307534325502062)))+(+(-(0o741003650767435716723))))/((sign(-0x5736730d851e5150))+(((-0x1b372baa57ef1f93)-(0x72869f623989d63b))*((-0x46e0c9cb8ad2d68e)+(-0o461644241424711077645))))}), (Jh:tY {g:(toIntegerOrNull("zXh}4."=~"")) IS NOT NULL}), (ND)-[XDQ:C {txg:0.3789113163948059}]->(ND)
CREATE (ykuUtcojc:tY {g:((toLower("M"))+((0.8409630656242371)^(-5526127207483846780)))+(toStringOrNull(duration('P366702555DT1623061073H635174336M1391424336S')))=~((trim("."))+(("")+(0.18415868282318115)))+(replace("6\\C{el+","+",""))}), (ovo:tY {g:((lTrim("E\tA\n~\\qb"))+((("b.h")+(2181584568073816909))+(toLower(""))))STARTS WITH(lTrim(rTrim("**Iy^hB")))}), (l:s {egjaauF:duration.inSeconds(date('0657-08-15'),date('07760418')), S:(2886573170316941746)/(size(trim(".Yu4g1)*j"))), AM7mON:time('12:54'), n_Sp1:isNaN(-(toFloatOrNull("")))}), (IeFv:tY {g:true}), (d6s:EaNJ {c:l.egjaauF, gyxe:point({ x: 0.162360, y: 0.311899, z: 0.700059 })}), (d6s)-[cGW:etncYH {L:duration.inDays(date('0963-06-06'),date('04291231'))}]->(d6s), (d6s)-[M:C {eF:d6s.Q, txg:e()}]->(l), (d6s)-[FI4:tU97 {J7:point({ x: 0.342954, y: 0.473005, z: 0.775892 })}]->(IeFv), (ovo)-[KVQ:etncYH {byw:date('0313-05-07'), rZ:FI4.LaLL, Y:0.6630691885948181, L:duration.inMonths(date('09690620'),FI4.LaLL)}]->(d6s), (ovo)-[lJN9:etncYH {byw:date('02230128'), Y:0.8935675024986267, L:duration('P849736414Y228879510WT1807408721M1365648361S')}]->(ykuUtcojc), (ovo)-[DYVLiOx:C {eF:((d6s.Q)+(-((l.S)/(M.eF))))*(-(size("r2A"))), txg:0.7791795134544373, gc:duration.inDays(date('08450220'),date('0086-08-26'))}]->(l), (ykuUtcojc)-[J:C {eF:-0o316571662622011240662, txg:0.3137984275817871, gc:duration('P1251969321Y1777091915MT1921872538M')}]->(ovo), (ykuUtcojc)-[UK:C {eF:1248149382969291515}]->(l), (ykuUtcojc)-[Cl:C {gc:J.gc}]->(IeFv), (l)-[fsTQiJTQx:tU97 {LaLL:date('0146-02-01'), J7:point({ x: 0.383434, y: 0.546641, z: 0.749492 })}]->(ykuUtcojc), (l)-[UlzrC2:tU97 {LaLL:date('0860-02-17')}]->(l), (IeFv)-[MnLc2fN2vw:tU97 {LaLL:date('01350630')}]->(ykuUtcojc)
CREATE (tl:h {o0xl:(+(abs(-0o560470222305564527522)))%(sign((0.7760086059570312)*(0.7291960120201111)))}), (ZWe4:tY {g:NOT(toBooleanOrNull(tl.o0xl))}), (m:oEj {b5S8vZ0:time('163336,167586474'), eO:tl.o0xl}), (ZWe4)-[K2fz:tU97 {LaLL:date('05060813')}]->(ZWe4), (tl)-[HdEcET:C {eF:tl.o0xl}]->(m), (m)-[drIOGy:C {eF:tl.o0xl, txg:0.2662069797515869, gc:duration('P1703277834Y640515006MT1657211789M1651113688S')}]->(ZWe4) RETURN *  LIMIT 3098155532340886730
CREATE INDEX cwX FOR ()-[n:tU97]-() ON (n.LaLL)
MATCH (n:s) WHERE (reverse(rTrim("w &")))CONTAINS((reverse("zsq"))+((point.distance(point({ x: 0.030970, y: 0.532672 }),point({ x: 0.045662, y: 0.616396, z: 0.727434 })))-(n.S))) REMOVE n.n_Sp1 RETURN * 
CREATE (lVM:tY {g:(trim("&* 1Zbc8"))+(((0o455255127500073625400)%(0x4baef22887757e99))+(toIntegerOrNull(point({ x: 0.964014, y: 0.681447, z: 0.800762 }))))=~toStringOrNull(duration.inMonths(date('0251-12-12'),date('00590311')))}), (o:oEj {b5S8vZ0:time('12'), eO:sign(+((0.6531051397323608)*(0o34367315575316144110)))}), (VUt7TYBVM:gYXh {ngR8QVkiqz:+((o.eO)+(o.eO)), w:time('15'), j:date('04390504'), YmOL4llRlZ:o.b5S8vZ0}), (lVM)-[uIEb1RCef:C {eF:-0o55664300435410147375, txg:-(round(+(0.26821041107177734)))}]->(o), (VUt7TYBVM)-[r5:tU97 {J7:point({ x: 0.094667, y: 0.493458 })}]->(lVM), (o)-[a70P:etncYH {rZ:r5.LaLL, Y:uIEb1RCef.txg, L:duration.inMonths(date('06951113'),VUt7TYBVM.j)}]->(o) RETURN * ORDER BY lVM.g DESC , r5, VUt7TYBVM, a70P, uIEb1RCef.eF DESC , o
CREATE (lJjlKvg_mn:oEj {eO:sign(toInteger(0.2899019718170166))}), (V:gYXh {ngR8QVkiqz:3266951288336770790, w:time('22'), j:date('0861-11-10'), YmOL4llRlZ:lJjlKvg_mn.b5S8vZ0}), (oe_uD:s {egjaauF:duration('P1720688199Y489181620M1921841216WT53741044S'), AM7mON:V.w, S:0o5714723274007521130}), (oe_uD)-[hGCA:etncYH {rZ:date('0117-10-31'), Y:0.5777950882911682, L:duration.inDays(V.j,date('04850211'))}]->(oe_uD), (oe_uD)-[JVgbeI:C {eF:-0o521506565511733056611, gc:duration('P636864283M807835727W1368902682DT1786716392H759323581M720344725S')}]->(V), (oe_uD)-[uh:tU97 {LaLL:date('03071106'), J7:point({ x: 0.434546, y: 0.347404, z: 0.256038 })}]->(lJjlKvg_mn), (V)-[WgQ73X7:etncYH {byw:date('0322-12-01'), Y:hGCA.Y, L:JVgbeI.gc}]->(lJjlKvg_mn), (lJjlKvg_mn)-[C:etncYH {byw:date('0861-06-01'), Y:toFloatOrNull((replace("","\n","?"))+(V.ngR8QVkiqz))}]->(oe_uD), (lJjlKvg_mn)-[Ve:C {eF:0o404741047653303451510, txg:WgQ73X7.Y, gc:duration('P1558900426Y1180346835M1658346461DT1506242660H1029393493S')}]->(V) RETURN DISTINCT oe_uD , C , JVgbeI , WgQ73X7.rZ  LIMIT 349314657754215186
CREATE (c_:h {o0xl:-0o660361347077023500533}), (c_)-[j7hR6:tU97 {LaLL:date('07650425'), J7:point({ x: 0.680245, y: 0.048640, z: 0.314487 })}]->(c_) RETURN * 
MATCH (n:gYXh) WHERE isNaN((toInteger(0.46294665336608887))%(ceil(0.7442516088485718))) SET n.YmOL4llRlZ = time('011630.10464274')
DROP INDEX cwX IF EXISTS
SHOW PROCEDURE
SHOW PROCEDURES
CREATE (P:EaNJ {Q:(toIntegerOrNull(-(-1511848564727014376)))/(toIntegerOrNull((0o21544256777453531435)%(-8870442951411861570)))}), (hvMr:EaNJ {Q:size(right("",P.Q)), gyxe:point({ x: 0.811653, y: 0.212926 })}), (hvMr)-[q:etncYH {L:duration.inDays(date('0461-01-03'),date('09260911'))}]->(P), (hvMr)-[y20E9:C {gc:duration.inSeconds(date('02520611'),q.rZ)}]->(hvMr) RETURN DISTINCT P.gyxe AS jT , q , hvMr.Q AS IYY , y20E9.gc AS J ORDER BY q , P.gyxe DESC 
MATCH (n:EaNJ) WHERE NOT((time('04')) IS NOT NULL) REMOVE n.c RETURN n 
SHOW TRANSACTION
CREATE (rwiBCp:tY {g:true}), (ESYnk:oEj {eO:((abs(-0x5e32dd849b4a741c))/(size("E),|3w")))%(sign(-(0x6686cb0c8626e234)))}), (KCHJq:oEj {eO:-((+(ESYnk.eO))+(sign(0.8448008894920349)))}), (NO:s {egjaauF:duration('P1839657741D'), S:(KCHJq.eO)+(size(("%!j#7")+(0.13695216178894043))), AM7mON:time('09'), n_Sp1:false}), (XDIY6K:EaNJ {Q:-0x4f512190e8764b41, c:duration('P1939822901MT2118655810M'), gyxe:point({ x: 0.035771, y: 0.077771, z: 0.129678 })}), (NO)-[iXl2KY1:tU97 {J7:point({ x: 0.510928, y: 0.362689 })}]->(KCHJq), (NO)-[j:tU97 {LaLL:date('0158-10-13'), J7:point({ x: 0.678044, y: 0.899101 })}]->(XDIY6K), (NO)-[z8O0NLQDp3:etncYH {byw:j.LaLL}]->(ESYnk), (NO)-[U:tU97 {LaLL:z8O0NLQDp3.byw, J7:point({ x: 0.062747, y: 0.094338, z: 0.608197 })}]->(rwiBCp), (KCHJq)-[KLiFg:etncYH {byw:date('00990524'), rZ:U.LaLL, Y:(z8O0NLQDp3.Y)-(toFloatOrNull((0.9652108550071716) IS NOT NULL)), L:duration('P1404006848M1616712318W1455246745DT851762253H1633619846M688797960S')}]->(ESYnk), (KCHJq)-[nx:etncYH {byw:date('00881018'), L:duration('P707810714W493209797DT531272720H')}]->(rwiBCp), (XDIY6K)-[kbs:C {eF:sign(KLiFg.Y), txg:nx.Y, gc:duration('P361825565M1141590366W1801096487DT238339438H')}]->(NO), (XDIY6K)-[Ysn0:C {txg:0.049314022064208984, gc:duration('P1241128654Y732255584W')}]->(XDIY6K), (XDIY6K)-[OH8:C {eF:0x60ab9656b75ace1b, txg:log(Ysn0.eF), gc:duration('P329487503M59963934WT607542411M')}]->(ESYnk), (ESYnk)-[d:tU97 {LaLL:date('07290227'), J7:iXl2KY1.J7}]->(NO), (ESYnk)-[e:etncYH {rZ:date('0804-09-22'), Y:-(z8O0NLQDp3.Y), L:Ysn0.gc}]->(KCHJq), (ESYnk)-[P:tU97 {J7:point({ x: 0.555613, y: 0.890049 })}]->(ESYnk), (ESYnk)-[g:etncYH {rZ:P.LaLL, Y:(+(e.Y))-(floor(KLiFg.Y))}]->(rwiBCp), (rwiBCp)-[AF:C {eF:+(toIntegerOrNull(KLiFg.rZ)), txg:0.1299734115600586}]->(ESYnk)
CREATE RANGE INDEX Jm IF NOT EXISTS FOR (n:oEj) ON (n.b5S8vZ0)
CREATE (AfUf62_HZ:s {egjaauF:duration('P1818282547M1795460503DT131404395H1054933243M1947011125S'), S:-((size(""))%(+((0o423344141107522102377)*(-0x31bbc2af13ac0783)))), n_Sp1:false}), (AfUf62_HZ)-[zQ:tU97 {LaLL:date('0717-05-29')}]->(AfUf62_HZ)
CREATE (Pjh:EaNJ {c:duration.inMonths(date('0399-11-14'),date('0277-11-09'))}), (CfRUWYMRzg:gYXh {ngR8QVkiqz:-8191514161654585482, w:time('192425.511189587'), j:date('0202-03-03')}), (X:gYXh {w:time('14'), j:CfRUWYMRzg.j}), (CfRUWYMRzg)-[Zm:etncYH {byw:X.j, rZ:date('08880325'), L:Pjh.c}]->(Pjh), (X)-[mKY2S:tU97 {LaLL:Zm.rZ, J7:point({ x: 0.938623, y: 0.939453, z: 0.797404 })}]->(Pjh), (Pjh)-[CCX1rg:C {eF:-0x2841e7156de81023, txg:0.7372581958770752, gc:duration.between(mKY2S.LaLL,CfRUWYMRzg.j)}]->(X), (Pjh)-[plepL:tU97 {LaLL:date('06861021'), J7:point({ x: 0.113261, y: 0.186021, z: 0.107141 })}]->(Pjh)
MATCH (n:h) WHERE isEmpty(left("<",0o71443751611155432325)) SET n.qIQ5 = duration.inDays(date('0972-01-30'),date('01180224')) RETURN n AS Bf 
CREATE (n_UEQ7:tY {g:toBoolean(toInteger("P"))}), (pH4PcqV:h {qIQ5:duration.between(date('03211226'),date('0104-01-19'))}), (ndp:EaNJ {Q:-0o545642706722261770262, c:duration('P1282451687Y160201109DT444317696H1294219490M')}), (lrQGD:gYXh {ngR8QVkiqz:ndp.Q, w:time('07'), YmOL4llRlZ:time('11:30')}), (n_UEQ7)-[s:C {txg:(round(round(0.12530046701431274)))%((((0.1645965576171875)*(0.7674390077590942))%(-(0.435626745223999)))/((+(0.6172850728034973))^((0x5111c0de8fa17c9)+(5568004501695368358))))}]->(ndp), (n_UEQ7)-[Y4DyA2VX:etncYH {rZ:lrQGD.j}]->(pH4PcqV), (ndp)-[RfbA2Muf:etncYH {byw:date('0337-11-11'), rZ:date('09021127'), L:duration('P704785877Y797175151M1177652586WT953794625H970231706M')}]->(ndp), (ndp)-[Q:C {eF:s.eF, txg:s.txg, gc:Y4DyA2VX.L}]->(pH4PcqV), (ndp)-[nt:C {eF:0o513363222771655015346, txg:s.txg, gc:duration.inMonths(date('05870815'),lrQGD.j)}]->(lrQGD), (pH4PcqV)-[tMx1XV6Qzm:tU97 {LaLL:date('0226-12-28'), J7:point({ x: 0.033789, y: 0.618756, z: 0.390623 })}]->(n_UEQ7), (pH4PcqV)-[Lu:C {eF:7638177819190550992}]->(pH4PcqV), (pH4PcqV)-[tG9PwRo1T:C {eF:0o252255725745730202523, txg:RfbA2Muf.Y, gc:duration('P727585131M1734133840W1654830865DT1540914812H1929754631M1083447592S')}]->(lrQGD), (lrQGD)-[wJ7w3givlp:C {txg:0.19548940658569336, gc:duration('P1936691103M1817198210W455561617DT1587401064H429230679S')}]->(pH4PcqV)
CREATE RANGE INDEX e FOR (n:oEj) ON (n.b5S8vZ0, n.eO)
MATCH (n:s) WHERE NOT(n.n_Sp1) SET n.AM7mON = time('213555') RETURN * ORDER BY n.n_Sp1 DESC 
DROP INDEX index_343aff4e
MATCH (n:s) WHERE n.n_Sp1 REMOVE n.AM7mON
CREATE (DM_:gYXh {j:date('03410116'), YmOL4llRlZ:time('22:00')}), (h:tY {g:toBooleanOrNull(DM_.YmOL4llRlZ)}), (W8:oEj {eO:-0x37785ffce7f7a8b5}), (kk7:s {AM7mON:time('18:50:36,557454620')}), (cY:tY {g:false}), (W8)-[m:etncYH {byw:date('0847-01-29'), rZ:date('0908-04-12'), Y:exp(toFloat("")), L:duration('P186183030Y567651256W1167448099DT1970274210M1053620662S')}]->(kk7), (kk7)-[t3:etncYH {rZ:date('03050716')}]->(W8), (kk7)-[N:tU97 {J7:point({ x: 0.779702, y: 0.579320, z: 0.798840 })}]->(kk7), (kk7)-[z:etncYH {byw:date('0571-07-05'), rZ:date('05921125'), Y:0.5471701622009277, L:t3.L}]->(h), (cY)-[heO:tU97 {J7:N.J7}]->(W8), (DM_)-[AQD48i:C {eF:-0o363022431206662466625, txg:m.Y, gc:duration.inDays(date('09620729'),date('09520812'))}]->(W8), (DM_)-[R9kz:tU97 {LaLL:date('02260413'), J7:point({ x: 0.203538, y: 0.331197, z: 0.192729 })}]->(kk7), (DM_)-[zHGqqBu9:etncYH {byw:date('0034-09-21'), rZ:date('03800619'), L:duration.inDays(date('08390110'),DM_.j)}]->(cY), (DM_)-[C4:C {eF:W8.eO, txg:z.Y, gc:duration('P2140725814YT0M1674543788S')}]->(h), (h)-[g:C {txg:0.730631411075592}]->(W8), (h)-[OkbHg:etncYH {byw:date('0335-04-10'), rZ:date('0222-12-05')}]->(kk7), (h)-[z1:tU97 {LaLL:date('0060-04-11'), J7:point({ x: 0.896963, y: 0.481021 })}]->(cY), (h)-[EE:tU97 {J7:point({ x: 0.323303, y: 0.365429, z: 0.293050 })}]->(DM_), (h)-[riICg:tU97 {LaLL:date('04841223'), J7:point({ x: 0.029872, y: 0.813048, z: 0.736193 })}]->(h) RETURN * ORDER BY EE, W8.eO , heO.J7 DESC , DM_.j DESCENDING , g, z1.LaLL DESCENDING , m, N.J7 , OkbHg LIMIT 897242570170833347
CREATE INDEX mqFbUX IF NOT EXISTS FOR (n:oEj) ON (n.b5S8vZ0, n.eO)
CREATE (NKAG0:gYXh {ngR8QVkiqz:0x91fb121824430ba}), (fT2aXk:EaNJ {Q:0o673041015337516700174, c:duration('P1424987482Y1763072955M506070536DT153696296H424378906S'), gyxe:point({ x: 0.835777, y: -0.000000 })})
CREATE (fA:h {o0xl:toInteger(point.distance(point({ x: 0.871142, y: 0.592200, z: 0.390625 }),point({ x: 0.935927, y: 0.040396 })))}), (g9_:h {qIQ5:duration.inSeconds(date('03090825'),date('03370616'))}), (fA)-[va2ZpOG:tU97 {LaLL:date('0996-04-09')}]->(fA), (fA)-[cVQBpP:tU97 {LaLL:date('06160910'), J7:point({ x: 0.250312, y: 0.305591 })}]->(g9_) RETURN * 
MATCH (n:oEj) WHERE isEmpty(trim("DH7")) SET n.b5S8vZ0 = time('235154.136662235') RETURN * ORDER BY n.eO DESC 
CREATE (fjk:oEj {b5S8vZ0:time('23'), eO:(toIntegerOrNull((0x2326f63eaed91c0f)+(-0x37cb4a06b592ce8)))*(((+(-0x39099e9961d21a77))+(+(-5360376773968498526)))+(+(+(0x2056c957372ae11f))))}), (xbeXj:tY {g:(+((fjk.eO)-((fjk.eO)^(0.7425670027732849)))) IS NOT NULL}), (I:h {o0xl:-1033382446414307600}), (xbeXj)-[n:etncYH {byw:date('0024-05-06'), rZ:date('0222-03-08'), Y:+(-(floor(0.42480576038360596))), L:duration('P1635756664Y891045187MT1798826872H1709245042M')}]->(xbeXj), (xbeXj)-[b:tU97 {LaLL:date('0389-07-05')}]->(fjk), (xbeXj)-[xDEKmR:etncYH {byw:n.rZ, rZ:date('0750-07-08'), Y:n.Y, L:duration.between(date('07741106'),b.LaLL)}]->(I), (I)-[e_Qtosza:etncYH {byw:date('09040701'), rZ:xDEKmR.rZ, L:duration('P1116493719YT607518264M')}]->(fjk), (I)-[Aq9GpS:tU97 {LaLL:date('02130820'), J7:b.J7}]->(I)
CREATE (vu:gYXh {ngR8QVkiqz:-(((abs(0x144f91d8785e47c2))/((0x2028759aa20b37bc)/(3241913476253261176)))-((abs(-0x637bd65927ed72f0))-(-(-1007124330628232147)))), w:time('12'), YmOL4llRlZ:time('14')}) RETURN vu ORDER BY vu
CREATE (v4:h {o0xl:-0x4253d4dca70cfc8c, qIQ5:duration('P541812105YT893173725H1278525091S')}), (OT:s {egjaauF:duration.inSeconds(date('0759-09-14'),date('0194-08-09')), AM7mON:time('17'), S:(toIntegerOrNull(abs(v4.o0xl)))-((toIntegerOrNull(point({ x: 0.499585, y: 0.719688 })))*(((v4.o0xl)+(5407080587504776237))-(v4.o0xl))), n_Sp1:((("I")+(-0o446030714734155772222))+(v4.o0xl))+(sqrt(-0o75067344616753352772))=~(replace("Ow}\t","'O",",2f4M\te"))+(v4.o0xl)}), (OT)-[M8yqnfqI:C {eF:v4.o0xl, txg:0.9801735281944275, gc:duration.inSeconds(date('0380-09-26'),date('04120110'))}]->(OT), (v4)-[J:etncYH {byw:date('0262-05-01'), Y:(M8yqnfqI.txg)/(M8yqnfqI.txg), L:duration.inMonths(date('01940525'),date('0065-03-14'))}]->(v4) RETURN J  LIMIT 4123391696946504488
CREATE (A:oEj {b5S8vZ0:time('00:36')})
CREATE (V:EaNJ {c:duration.inMonths(date('06450629'),date('0005-07-18')), gyxe:point({ x: 0.529476, y: 0.234117, z: 0.050240 })}), (oOt:EaNJ {Q:-6681091501134748211, c:duration('P92477413Y1686914225M1261953672W1404415289DT1738911366H233813657S'), gyxe:point({ x: 0.550479, y: 0.402748, z: 0.123876 })}), (Uds8A:h {o0xl:0x5283f0b96af8a258}), (Uds8A)-[W0W:etncYH {rZ:date('05490721')}]->(Uds8A), (Uds8A)-[F7OaU:C {txg:+(toFloatOrNull(oOt.gyxe))}]->(oOt), (oOt)-[to:tU97 {LaLL:date('01160320')}]->(Uds8A), (oOt)-[mW:tU97 {J7:point({ x: 0.836321, y: 0.061055 })}]->(oOt), (oOt)-[UT:etncYH {byw:date('01600126'), rZ:date('0315-10-15'), L:duration('P335158874YT1086451911M1583797002S')}]->(V), (V)-[m:tU97 {LaLL:UT.byw, J7:point({ x: 0.933009, y: 0.177794, z: 0.089346 })}]->(oOt), (V)-[sILtRzuw:etncYH {L:duration.inDays(mW.LaLL,m.LaLL)}]->(V) RETURN DISTINCT oOt.gyxe AS NLVPWXwE , V.Q ORDER BY oOt.gyxe DESC , V.Q 
SHOW TRANSACTIONS
CREATE (rcszV8e:tY {g:((((((("uh")STARTS WITH("RN"))OR(("o|gk&W(")STARTS WITH("")))OR((0.6396274566650391) IS NULL))OR(toBoolean(0x1981f216a5626317)))OR(((date('06161022'))<>(date('0780-12-27'))) IS NOT NULL))AND(("")CONTAINS(substring("9HWq3",-8998548368124354805,0o515275751227225357060))))XOR(toUpper("N(aDLs")=~substring("",223649194892501032,-0x54e7c4aba7012fb2))}), (xY:s {egjaauF:duration.between(date('0118-05-18'),date('0647-11-19')), S:toInteger((-1320872630748413648)/(abs(0x528f8ad22dcf525))), AM7mON:null, n_Sp1:false}), (xY)-[xu4b:etncYH {Y:0.41712015867233276, L:duration('P1752997285Y713995837M331376856DT252273430H1992862225M895961404S')}]->(xY), (rcszV8e)-[w:tU97 {J7:point({ x: 0.191587, y: 0.029249, z: 0.842238 })}]->(rcszV8e)
MATCH (n:tY) WHERE toString((0.22897577285766602)+(-0o255556030575676364131))=~lTrim(("8D~U")+("")) SET n.g = (point({ x: 0.585311, y: 0.459189, z: 0.622811 })) IS NOT NULL
SHOW ALL FUNCTIONS
MATCH (n:EaNJ) WHERE toLower(("m")+(n.Q))=~replace(("\\")+(0.21413832902908325),("F _<\r")+(0x3ad1fcf7e27e4aa1),("")+("<TO+(\nnW")) DELETE n
MATCH (n:gYXh) WHERE ((toLower("&\\"))+(substring("*'Mpb",n.ngR8QVkiqz,null)))STARTS WITH(right(("\\")+("C"),(n.ngR8QVkiqz)+(n.ngR8QVkiqz))) DELETE n
MATCH (n:oEj) WHERE ((toString(duration('P88144076MT1348260485H')))ENDS WITH(replace("kA","[ud","sk")))XOR((toLower(""))CONTAINS((("")+(n.eO))+(substring("U_G",0x7ea02a2cb2bc235e,0x650dcd6de8560389)))) DELETE n RETURN * ORDER BY n DESC 
MATCH (n:gYXh) WHERE (duration.inMonths(date('01330426'),n.j))<(duration.between(date('04921111'),date('05000101'))) DELETE n RETURN n AS hWOIj ORDER BY n DESC 
DROP INDEX index_f7700477
CREATE (XXqUMDw0l:s {egjaauF:duration.inDays(date('0709-01-31'),date('0933-11-17')), AM7mON:time('02'), S:sign(abs(0x77adc39434df438)), n_Sp1:true}), (UU_H9Zfnun:oEj {b5S8vZ0:time('08')}), (XXqUMDw0l)-[eVkg36ycH:C {eF:UU_H9Zfnun.eO, txg:exp(((0o231136424763400362353)+(UU_H9Zfnun.eO))-(+(0.8976371884346008))), gc:duration('P937102729Y352184067WT1318886086H205515941S')}]->(UU_H9Zfnun), (UU_H9Zfnun)-[dv4:tU97 {LaLL:date('0658-03-18'), J7:point({ x: 0.558986, y: 0.156900 })}]->(XXqUMDw0l), (UU_H9Zfnun)-[tu7:etncYH {rZ:date('02390126'), Y:0.10845750570297241, L:duration('P1357880998Y1199659703W1549088530DT1377040519H')}]->(UU_H9Zfnun)
MATCH (n:tY) WHERE NOT(n.g) REMOVE n.g
CREATE (I:oEj {eO:-0o372645463105344011410}), (z2iwim:s {egjaauF:duration('P563600991Y540411417MT879317545H673059149M1145482283S'), S:-0o517543105600650167565, AM7mON:time('20'), n_Sp1:NOT(toBoolean(I.eO))}), (G:gYXh {ngR8QVkiqz:z2iwim.S, w:time('08:32')}), (joP:oEj {b5S8vZ0:time('222612')}), (pkY:oEj {b5S8vZ0:time('12'), eO:0o155113655507257022106}), (G)-[OK4CrEO:etncYH {byw:date('0484-12-29'), rZ:G.j, L:duration.inSeconds(G.j,date('0936-11-19'))}]->(I), (G)-[q:tU97 {LaLL:date('00830105'), J7:point({ x: 0.001186, y: 0.359408, z: 0.961713 })}]->(pkY), (I)-[RY2w:etncYH {Y:0.4400641918182373}]->(joP), (I)-[a:C {eF:+(pkY.eO), txg:0.3863376975059509, gc:duration('P1227985443WT71880555H1753589879S')}]->(pkY), (joP)-[kZ:tU97 {J7:q.J7}]->(joP), (joP)-[FD:C {txg:0.9201890230178833}]->(pkY), (z2iwim)-[qJsoQqS:C {eF:a.eF}]->(G), (z2iwim)-[Cjso:etncYH {byw:date('06010902'), rZ:date('03500915')}]->(I), (z2iwim)-[T7D:tU97 {LaLL:OK4CrEO.rZ, J7:point({ x: 0.560892, y: 0.525753, z: 0.742749 })}]->(joP), (z2iwim)-[m_e:etncYH {byw:q.LaLL, rZ:date('0481-06-25'), Y:RY2w.Y}]->(z2iwim), (pkY)-[MFHxr_19r:tU97 {LaLL:G.j, J7:point({ x: 0.624625, y: 0.730424, z: 0.653824 })}]->(I) RETURN * ORDER BY T7D.J7 , a, q, qJsoQqS.gc , m_e, Cjso.Y , OK4CrEO, z2iwim, pkY.b5S8vZ0 , kZ.LaLL 
MATCH (n:h) WHERE (((substring("l><x",-0o371614555006257421532,-0x34517e6649048411))+(abs(0.7711995244026184)))+(n.o0xl))CONTAINS((substring("KYn",0x2861b98db881390c,n.o0xl))+(n.o0xl)) SET n.o0xl = -0o715735512335140173505
MATCH (n:tY) WHERE n.g SET n.g = toBoolean((substring("_?]A>5b",-0o344017144173465624557,3614036126983707562))+(+(-0x50004fb1f99a5015)))
MATCH (n:gYXh) WHERE toBooleanOrNull(duration.inSeconds(date('0252-10-20'),n.j)) SET n.YmOL4llRlZ = time('014710')
SHOW TRANSACTIONS
CREATE (tAeVkiuev9:EaNJ {gyxe:point({ x: 0.535326, y: 0.776513, z: 0.442005 })}), (oB2Uc_Yk:EaNJ {Q:+(((-(0o650320403627373717354))%(tAeVkiuev9.Q))*((-(tAeVkiuev9.Q))%(tAeVkiuev9.Q))), c:duration('P1834167182Y1728523872M1928001436WT1077407791M957805984S'), gyxe:point({ x: 0.137204, y: 0.862593 })}), (tAeVkiuev9)-[PJ:tU97 {J7:point({ x: 0.928259, y: 0.161415, z: 0.894991 })}]->(tAeVkiuev9), (tAeVkiuev9)-[z:tU97 {LaLL:date('03670325')}]->(oB2Uc_Yk), (oB2Uc_Yk)-[w1VutI:tU97 {LaLL:PJ.LaLL, J7:point({ x: 0.786331, y: 0.258346, z: 0.163031 })}]->(tAeVkiuev9), (oB2Uc_Yk)-[TyZ:etncYH {rZ:date('01660411')}]->(oB2Uc_Yk)
CREATE (XDe:EaNJ {Q:(size(("x")+(3900780519097772873)))*(size(("")+(0.2659788727760315))), c:duration('P887981108Y475215037M1413164324W836226958DT710341162H307616222S')}), (Q_:gYXh {ngR8QVkiqz:-1397213554700922710, w:time('11:12'), j:date('09530826'), YmOL4llRlZ:time('02')}), (y:gYXh {j:date('01830910'), YmOL4llRlZ:time('19')}), (XDe)-[w:etncYH {L:duration('P1718150242Y920069239WT383233771H307560760M2116123980S')}]->(XDe), (XDe)-[o:tU97 {LaLL:date('05100711'), J7:point({ x: 0.450175, y: 0.341225 })}]->(y), (y)-[d_:C {eF:-0o37601251750777622537, txg:0.20148968696594238, gc:duration.inDays(w.byw,Q_.j)}]->(Q_), (Q_)-[SKoV_a:etncYH {byw:date('08200914'), rZ:w.rZ}]->(XDe), (Q_)-[BMu:etncYH {byw:date('0261-10-04'), rZ:date('03421014'), Y:w.Y, L:duration.inDays(o.LaLL,date('06481015'))}]->(Q_)
CREATE (zH:h {o0xl:0x27fded94f3978649, qIQ5:duration.between(date('06410220'),date('0189-05-27'))}) RETURN * 
MATCH (n:EaNJ) WHERE isNaN(floor(0.8987690210342407)) SET n.gyxe = point({ x: 0.513603, y: 0.576767 }) RETURN n  LIMIT 2678684788770369941
SHOW TRANSACTION
@arnefischereit
Copy link
Contributor

This is the same issue as #13059.

@arnefischereit arnefischereit closed this as not planned Won't fix, can't repro, duplicate, stale Mar 21, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants