You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "Jaume M (JIRA)" <ji...@apache.org> on 2017/08/01 21:05:00 UTC

[jira] [Created] (TINKERPOP-1739) Timestamp value is not correctly written

Jaume M created TINKERPOP-1739:
----------------------------------

             Summary: Timestamp value is not correctly written
                 Key: TINKERPOP-1739
                 URL: https://issues.apache.org/jira/browse/TINKERPOP-1739
             Project: TinkerPop
          Issue Type: Bug
          Components: console
    Affects Versions: 3.2.5
            Reporter: Jaume M


{code}
schema.vertexLabel('user').ifNotExists().create();
schema.propertyKey('name_time').Timestamp().ifNotExists().create();
schema.vertexLabel('user').properties('name_time').add();
g.addV('user').property('name_time', '0001-01-01 00:00:00').toList();
g.V().values()
//0000-12-30T05:00:00Z
{code}

0000-12-30T05:00:00Z is being written instead of 0001-01-01 00:00:00




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)