From e6f525e9d9eb0590be56f5c70089a387f99f744f Mon Sep 17 00:00:00 2001 From: Nathaniel Cook Date: Thu, 26 May 2016 14:21:22 -0600 Subject: [PATCH] update comment on MaxTime --- influxql/iterator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influxql/iterator.go b/influxql/iterator.go index 796ed23ce9c..4ee2f75c743 100644 --- a/influxql/iterator.go +++ b/influxql/iterator.go @@ -22,7 +22,7 @@ const ( MinTime = int64(0) // MaxTime is used as the maximum time value when computing an unbounded range. - // This time is Jan 1, 2050 at midnight UTC. + // This time is 2262-04-11 23:47:16.854775806 +0000 UTC MaxTime = models.MaxNanoTime - 1 )