fakesdb
fakesdb copied to clipboard
itemName() in select query not returning results.
Hi there, I have just realized that the following query does not return any results (and it should). An example below using AWScala:
val id = "abc"
val domain = client.createDomain("hello")
domain.put(id, "name" -> "John", "surname" -> "Smith")
domain.select(s"select * from videos where itemName() = '$id'")
items.headOption should not be (None)
The test below fails