Skip to content

Commit

Permalink
docs: design time format param for query (#143)
Browse files Browse the repository at this point in the history
Signed-off-by: weiping-code <[email protected]>
  • Loading branch information
weiping-code authored Jan 3, 2025
1 parent 42bda33 commit 2501841
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/guide/develop/client_design.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,22 @@ classDiagram
+ String database
+ String retentionPolicy
+ String command
+ TimeFormat timeFormat
+ Precision precision
}
class Precision {
<<enum>>
PRECISIONMICROSECOND("u")
PRECISIONNANOSECOND("ns")
PRECISIONMILLISECOND("ms")
PRECISIONSECOND("s")
PRECISIONMINUTE("m")
PRECISIONHOUR("h")
}
class TimeFormat {
<<enum>>
RFC3339("rfc3339")
TIMESTAMP("timestamp")
}
```

Expand Down

0 comments on commit 2501841

Please sign in to comment.