We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42bda33 commit 2501841Copy full SHA for 2501841
src/guide/develop/client_design.md
@@ -206,6 +206,22 @@ classDiagram
206
+ String database
207
+ String retentionPolicy
208
+ 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
223
+ RFC3339("rfc3339")
224
+ TIMESTAMP("timestamp")
225
}
226
```
227
0 commit comments