forked from neo4j/neo4j
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the typing of Cypher collections.
o Previously all collections were CollectionType(AnyType()) because of a bug in the type derivation code. o This fixes a reported bug where indexing twice into a collection didn't work.
- Loading branch information
Showing
7 changed files
with
128 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
...cypher/src/test/scala/org/neo4j/cypher/internal/commands/expressions/CollectionTest.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package org.neo4j.cypher.internal.commands.expressions | ||
|
||
import org.scalatest.Assertions | ||
import org.junit.Test | ||
import org.neo4j.cypher.internal.symbols._ | ||
import org.neo4j.cypher.internal.symbols.SymbolTable | ||
import org.neo4j.cypher.internal.symbols.AnyType | ||
|
||
/** | ||
* Copyright (c) 2002-2013 "Neo Technology," | ||
* Network Engine for Objects in Lund AB [http://neotechnology.com] | ||
* | ||
* This file is part of Neo4j. | ||
* | ||
* Neo4j is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
class CollectionTest extends Assertions { | ||
@Test | ||
def empty_collection_should_have_any_type() { | ||
assert(Collection().getType(SymbolTable()) === CollectionType(AnyType())) | ||
} | ||
|
||
@Test | ||
def collection_with_one_item_should_be_typed_for_that_items_type() { | ||
assert(Collection(Literal(1)).getType(SymbolTable()) === CollectionType(NumberType())) | ||
} | ||
|
||
@Test | ||
def collection_with_several_items_should_be_typed_for_their_common_supertype(){ | ||
assert(Collection(Literal(1), Literal(true)).getType(SymbolTable()) === CollectionType(ScalarType())) | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
...ty/cypher/src/test/scala/org/neo4j/cypher/internal/commands/expressions/LiteralTest.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package org.neo4j.cypher.internal.commands.expressions | ||
|
||
import org.scalatest.Assertions | ||
import org.junit.Test | ||
import org.neo4j.cypher.internal.symbols.{SymbolTable, StringType, CollectionType} | ||
|
||
/** | ||
* Copyright (c) 2002-2013 "Neo Technology," | ||
* Network Engine for Objects in Lund AB [http://neotechnology.com] | ||
* | ||
* This file is part of Neo4j. | ||
* | ||
* Neo4j is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
class LiteralTest extends Assertions { | ||
@Test | ||
def collections_should_be_typed_correctly() { | ||
val value = Literal(Seq(Seq("Text"))) | ||
val typ = CollectionType(CollectionType(StringType())) | ||
|
||
assert(value.calculateType(SymbolTable()) === typ) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters