-
Notifications
You must be signed in to change notification settings - Fork 18
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
Support Elastic primitive for UUID #183
Conversation
test("successfully create matches query with Long") { | ||
assert(matches(FieldName, 1.toLong))(equalTo(Match[Any, Long](FieldName, 1.toLong, boost = None))) | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you do something like 1L
?
modules/library/src/test/scala/zio/elasticsearch/ElasticPrimitivesSpec.scala
Outdated
Show resolved
Hide resolved
|
||
import java.util.UUID | ||
|
||
object ElasticPrimitivesSpec extends ZIOSpecDefault { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
object ElasticPrimitivesSpec extends ZIOSpecDefault { | |
object ElasticPrimitiveSpec extends ZIOSpecDefault { |
|
||
object ElasticPrimitivesSpec extends ZIOSpecDefault { | ||
|
||
private val fieldName = "fieldName" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private val fieldName = "fieldName" | |
private val FieldName = "fieldName" |
Summary: