Hi all,

In my GAE App I just do a datastore_backup for all Kinds.

When I try to load it to BigQuery almost Kinds was successfully loaded
however with one Kind I have this error:

invalid - Invalid field name "rows.pedido_automatico". Fields must contain
only letters, numbers, and underscores, start with a letter or underscore,
and be at most 128 characters long.

My GAE Kind:

class StockRow(ndb.Model):
  pedido_automatico = ndb.StringProperty(default="N",choices=set(["S","N"]))

class Stock(ndb.Model):
  rows = ndb.StructuredProperty(SemAlmacenPedidoRutaRow, repeated=True)

Is this a known bug ?

Thanks for hearing.
Regards.
Moisés Belchín.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to