We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa417a commit 0566811Copy full SHA for 0566811
.github/workflows/rust.yml
@@ -1,6 +1,6 @@
1
name: Rust
2
3
-on: [push]
+on: [push, pull_request]
4
5
jobs:
6
style:
influxdb/src/query/read_query.rs
@@ -5,6 +5,7 @@
use crate::query::{QueryType, ValidQuery};
use crate::{Error, Query};
7
8
+#[derive(Debug, Clone)]
9
pub struct ReadQuery {
10
queries: Vec<String>,
11
}
influxdb/src/query/write_query.rs
@@ -27,6 +27,7 @@ impl<T: Into<Type>> WriteType for Option<T> {
27
28
29
/// Internal Representation of a Write query that has not yet been built
30
31
pub struct WriteQuery {
32
fields: Vec<(String, Type)>,
33
tags: Vec<(String, Type)>,
@@ -105,6 +106,7 @@ impl WriteQuery {
105
106
107
108
109
110
pub enum Type {
111
Boolean(bool),
112
Float(f64),
0 commit comments