Skip to content
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

QueryBuilder should throw exception or issue warning when quering on unindexed property #192

Open
musketyr opened this issue Feb 24, 2013 · 0 comments

Comments

@musketyr
Copy link
Contributor

Given simple script

import groovyx.gaelyk.datastore.*
import groovy.transform.*

@Entity @Canonical @CompileStatic class Comment {
    String title
    String body
}

new Comment(title: 'Title', body: 'Body').save()

assert Comment.count{ where title == 'Title' } == 0

We might expect result 1 instead of 0. Result is zero because the value is unindexed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant