()
| 314 | } |
| 315 | |
| 316 | func createMultiTimeseries() { |
| 317 | var ( |
| 318 | paths = []string{"root.sg1.dev1.temperature"} |
| 319 | dataTypes = []client.TSDataType{client.TEXT} |
| 320 | encodings = []client.TSEncoding{client.PLAIN} |
| 321 | compressors = []client.TSCompressionType{client.SNAPPY} |
| 322 | ) |
| 323 | checkError(session.CreateMultiTimeseries(paths, dataTypes, encodings, compressors)) |
| 324 | } |
| 325 | |
| 326 | func deleteTimeseries(paths ...string) { |
| 327 | checkError(session.DeleteTimeseries(paths)) |
no test coverage detected
searching dependent graphs…