Skip to content

Commit

Permalink
fixed graph aggregation syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
datomo committed Dec 22, 2023
1 parent 706f2aa commit 835e754
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ allprojects {
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.ADOPTIUM
}
}

Expand Down
5 changes: 4 additions & 1 deletion plugins/cypher-language/src/main/codegen/CypherParser.jj
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,10 @@ CypherClause MatchClause() :
CypherWhere where = null;
}
{
( optionalT=<OPTIONAL> { optional = true; } )? t=<MATCH> ("(*)" {fullScan = true;} | patterns=PatternList() hints=Hints()) ( where=WhereClause() )?
( optionalT=<OPTIONAL> { optional = true; } )? t=<MATCH> (
LOOKAHEAD( 3 ) <LPAREN> <TIMES> <RPAREN> {fullScan = true;} |
( patterns=PatternList() hints=Hints() ))
( where=WhereClause() )?
{
return CypherFactory.createMatch( pos( optionalT != null ? optionalT : t ), optional, patterns, pos( t.next ), hints, where, fullScan );
}
Expand Down
6 changes: 0 additions & 6 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,3 @@ include 'plugins:excel-adapter'
// other plugins
include 'plugins:notebooks'

// disabled adapter plugins
//include 'plugins:pig-adapter'
//include 'plugins:html-adapter'
//include 'plugins:druid-adapter'
//include 'plugins:elasticsearch-adapter'
//include 'plugins:geode-adapter'

0 comments on commit 835e754

Please sign in to comment.