Skip to content

Commit 2501841

Browse files
authored
docs: design time format param for query (#143)
Signed-off-by: weiping-code <hustwaitone@163.com>
1 parent 42bda33 commit 2501841

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/guide/develop/client_design.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,22 @@ classDiagram
206206
+ String database
207207
+ String retentionPolicy
208208
+ String command
209+
+ TimeFormat timeFormat
210+
+ Precision precision
211+
}
212+
class Precision {
213+
<<enum>>
214+
PRECISIONMICROSECOND("u")
215+
PRECISIONNANOSECOND("ns")
216+
PRECISIONMILLISECOND("ms")
217+
PRECISIONSECOND("s")
218+
PRECISIONMINUTE("m")
219+
PRECISIONHOUR("h")
220+
}
221+
class TimeFormat {
222+
<<enum>>
223+
RFC3339("rfc3339")
224+
TIMESTAMP("timestamp")
209225
}
210226
```
211227

0 commit comments

Comments
 (0)