Google Cloud Datastore date field getting converted automatically

504 Views Asked by At

I've got a table called Person with three columns:

  • id

  • name

  • registeredDate

Where registeredDate is LocalDateTime.

I am trying to write a query using Query By GQl as following:

Select * from person

I'm getting the following data output

Id  name  registeredDate

1  Xyz   2009-10-09(09:30:00.000) IST

When I'm trying with following query:

Select Id, registeredDate from person

I'm getting following output:

Id  registeredDate

1. 1255060800000000

I don't know why the datetime field is not displaying properly. Why it is getting converted automatically. How to make it display as LocalDateTime format.

1

There are 1 best solutions below

2
On

Date and time value, returned as part of a projection query, is being converted by the Datastore mode to microsecond integer values.

This is one of the limitations on projections described in the documentation as follows:

In the results of a projection query, Datastore mode converts timestamp values to microsecond integer values.

You'll need to use other query types to return the registeredDate not in microseconds.