This is an automated email from the ASF dual-hosted git repository.

xushiyan pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 9400ae5  Fixing instant time query format (#4149)
9400ae5 is described below

commit 9400ae540f392d9f67ebac0b9742022dc9772354
Author: Sivabalan Narayanan <[email protected]>
AuthorDate: Sun Nov 28 17:59:20 2021 -0500

    Fixing instant time query format (#4149)
---
 website/docs/quick-start-guide.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/website/docs/quick-start-guide.md 
b/website/docs/quick-start-guide.md
index 1e33090..4abd431 100644
--- a/website/docs/quick-start-guide.md
+++ b/website/docs/quick-start-guide.md
@@ -328,12 +328,12 @@ Hudi support time travel query since 0.9.0. Currently 
three query time formats a
 ```scala
 spark.read.
   format("hudi").
-  option("as.of.instant", "20210728141108").
+  option("as.of.instant", "20210728141108100").
   load(basePath)
 
 spark.read.
   format("hudi").
-  option("as.of.instant", "2021-07-28 14:11:08").
+  option("as.of.instant", "2021-07-28 14:11:08.200").
   load(basePath)
 
 // It is equal to "as.of.instant = 2021-07-28 00:00:00"

Reply via email to