added uint information to the line protocol reference, resolves #582

pull/583/head
Scott Anderson 2019-11-01 10:29:58 -06:00
parent f129eb9435
commit 91bd5e575a
1 changed files with 14 additions and 0 deletions

View File

@ -149,6 +149,20 @@ myMeasurement fieldKey=12485903i
myMeasurement fieldKey=-12485903i
```
### UInteger
Unsigned 64-bit integers.
Trailing `u` on the number specifies an unsigned integer.
| Minimum uinteger | Maximum uinteger |
| ---------------- | ---------------- |
| `0u` | `18446744073709551615u` |
##### UInteger field value examples
```js
myMeasurement fieldKey=1u
myMeasurement fieldKey=12485903u
```
### String
Plain text string.
Length limit 64KB.