Skip to content
Open
Changes from 1 commit
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
f363428
added neo4j functions tests
Feb 15, 2026
2376022
fixed factory
Feb 15, 2026
cdec6bb
Merge branch 'ArcadeData:main' into more_tests
ExtReMLapin Feb 15, 2026
44d0c39
Merge branch 'ArcadeData:main' into more_tests
ExtReMLapin Feb 15, 2026
be84308
added elementid() (uses ID())
Feb 15, 2026
1ba12c7
Revert "added elementid() (uses ID())"
Feb 15, 2026
1d0342e
Merge branch 'ArcadeData:main' into more_tests
ExtReMLapin Feb 15, 2026
6488c38
fixed some tests (expect 64bit, not 32)
Feb 15, 2026
e8375db
more 64bit fixes
Feb 15, 2026
a41ff64
fixed some errors
Feb 15, 2026
ca38e62
more errors fixes
Feb 15, 2026
703eba0
Merge branch 'ArcadeData:main' into more_tests
ExtReMLapin Feb 16, 2026
a8f9dcd
Update engine/src/test/java/com/arcadedb/query/opencypher/functions/O…
ExtReMLapin Feb 16, 2026
ddc6dbf
Update engine/src/test/java/com/arcadedb/query/opencypher/functions/O…
ExtReMLapin Feb 16, 2026
99aa587
Merge branch 'ArcadeData:main' into more_tests
ExtReMLapin Feb 16, 2026
c454c1c
fixed compilation error
Feb 18, 2026
c826fe5
Merge branch 'ArcadeData:main' into more_tests
ExtReMLapin Mar 19, 2026
16af5f2
fixed exception not being detected
Mar 19, 2026
00afff9
fixed missing exceptions
Mar 19, 2026
64e2abd
updated tests
Mar 19, 2026
8280281
updated tests
Mar 20, 2026
3b6fd79
Coll insert/remove force second arg
Mar 20, 2026
6a23fdf
point.distance cypher
Mar 20, 2026
9dff309
cypher point use map like cypher, not like sql
Mar 20, 2026
0762c40
geo utils support map xy or longitude latitude
Mar 20, 2026
91407e5
left support two args error and neg len error
Mar 20, 2026
2c5f0f0
two args and neg len
Mar 20, 2026
6275cb2
force 3 args for Replace function
Mar 20, 2026
69e265d
lTrim support two args
Mar 20, 2026
50ec604
rtrim two args
Mar 20, 2026
28f6a6e
substring better errors handling
Mar 20, 2026
87e67e6
sync
Mar 20, 2026
2f591d6
Round added precision and mode
Mar 20, 2026
3266b9b
added timezones
Mar 20, 2026
7e9e0c6
updated vectors
Mar 20, 2026
ce445f6
sync
Mar 20, 2026
f7b0fb0
SQLFunctionStandardDeviation now returns 0.0 instead of null
Mar 20, 2026
34c5150
Update engine/src/main/java/com/arcadedb/function/geo/CypherPointFunc…
ExtReMLapin Mar 20, 2026
ef55e43
updated old test
Mar 20, 2026
14fa415
Merge branch 'ArcadeData:main' into more_tests
ExtReMLapin Apr 18, 2026
8e79172
sync
Apr 18, 2026
f8f942c
sync
Apr 18, 2026
867ccca
support for parallel tests running + isolation
Apr 18, 2026
f58e1ad
fixed config print
Apr 18, 2026
b09a93f
fixed codacy being a crybaby
Apr 18, 2026
136f775
Merge branch 'main' into more_test_fast_tests
ExtReMLapin Apr 22, 2026
05758f2
removed whitespace
ExtReMLapin Apr 22, 2026
24af8f3
removed whitespace
ExtReMLapin Apr 22, 2026
2ea2ee0
removed whitespace
ExtReMLapin Apr 22, 2026
3b6117c
removed whitespace
ExtReMLapin Apr 22, 2026
7705b9e
removed whitespace
ExtReMLapin Apr 22, 2026
15b72ba
removed whitespace
ExtReMLapin Apr 22, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
removed whitespace
  • Loading branch information
ExtReMLapin authored Apr 22, 2026
commit 15b72babd67cf5a5fb96ca449f71af611290a5ac
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,6 @@ void splitEmptyString() {
}

@Test

void splitTrailingDelimiter() {
final ResultSet result = database.command("opencypher", "RETURN split('a,b,', ',') AS result");
Assertions.assertThat(result.hasNext() != false).isTrue();
Expand Down
Loading