Skip to content

Commit

Permalink
Replicate exception in phase 'canonicalization' bug
Browse files Browse the repository at this point in the history
  • Loading branch information
codeconsole committed May 21, 2019
1 parent 2e8467b commit f4925e2
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -422,12 +422,16 @@ class EntityTransformationSpec extends Specification {
import groovyx.gaelyk.datastore.Key
import groovyx.gaelyk.datastore.Entity as GE
import groovyx.gaelyk.datastore.Indexed
import groovyx.gaelyk.datastore.Ignore
import groovyx.gaelyk.datastore.Order
import groovy.transform.Canonical
import com.google.appengine.api.datastore.*
@GE @groovy.transform.CompileStatic
@GE @Canonical @groovy.transform.CompileStatic
class Person {
@Key long id
@Indexed String name
@Ignore Order order
}
def key = new Person(name: 'test').save()
Expand Down

0 comments on commit f4925e2

Please sign in to comment.