Skip to content

Commit 5433ec6

Browse files
committed
style: satisfy clippy
1 parent d93dee2 commit 5433ec6

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

benches/insert.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ fn insert(c: &mut Criterion) {
7676
b.iter_custom(|iters| {
7777
let rt = Runtime::new().unwrap();
7878
let client = Client::default()
79-
.with_url(format!("http://{}", addr))
79+
.with_url(format!("http://{addr}"))
8080
.with_compression(Compression::None);
8181
rt.block_on(run(client, iters)).unwrap()
8282
})
@@ -86,7 +86,7 @@ fn insert(c: &mut Criterion) {
8686
b.iter_custom(|iters| {
8787
let rt = Runtime::new().unwrap();
8888
let client = Client::default()
89-
.with_url(format!("http://{}", addr))
89+
.with_url(format!("http://{addr}"))
9090
.with_compression(Compression::Lz4);
9191
rt.block_on(run(client, iters)).unwrap()
9292
})
@@ -96,7 +96,7 @@ fn insert(c: &mut Criterion) {
9696
b.iter_custom(|iters| {
9797
let rt = Runtime::new().unwrap();
9898
let client = Client::default()
99-
.with_url(format!("http://{}", addr))
99+
.with_url(format!("http://{addr}"))
100100
.with_compression(Compression::Lz4Hc(4));
101101
rt.block_on(run(client, iters)).unwrap()
102102
})

benches/select.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ mod server {
1616
use tokio::runtime;
1717

1818
async fn handle(req: Request<Body>) -> Result<Response<Body>, Infallible> {
19-
let _ = body::aggregate(req.into_body());
19+
let _ = body::aggregate(req.into_body()).await;
2020
let chunk = Bytes::from_static(&[15; 128 * 1024]);
2121
let stream = stream::repeat(Ok::<Bytes, &'static str>(chunk));
2222
let body = Body::wrap_stream(stream);
@@ -70,7 +70,7 @@ fn select(c: &mut Criterion) {
7070
b.iter_custom(|iters| {
7171
let rt = Runtime::new().unwrap();
7272
let client = Client::default()
73-
.with_url(format!("http://{}", addr))
73+
.with_url(format!("http://{addr}"))
7474
.with_compression(Compression::None);
7575
let start = Instant::now();
7676
rt.block_on(run(client, iters)).unwrap();

examples/enums.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ async fn main() -> Result<()> {
6464
.query("SELECT ?fields FROM event_log")
6565
.fetch_all::<Event>()
6666
.await?;
67-
println!("{:?}", events);
67+
println!("{events:?}");
6868

6969
Ok(())
7070
}

examples/mock.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async fn main() {
6363
// How to test failures.
6464
mock.add(test::handlers::failure(test::status::FORBIDDEN));
6565
let reason = make_select(&client).await;
66-
assert_eq!(format!("{:?}", reason), r#"Err(BadResponse("Forbidden"))"#);
66+
assert_eq!(format!("{reason:?}"), r#"Err(BadResponse("Forbidden"))"#);
6767

6868
// How to test INSERT.
6969
let recording = mock.add(test::handlers::record());

examples/usage.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ async fn fetch(client: &Client) -> Result<()> {
6767
.fetch::<MyRow<'_>>()?;
6868

6969
while let Some(row) = cursor.next().await? {
70-
println!("{:?}", row);
70+
println!("{row:?}");
7171
}
7272

7373
Ok(())
@@ -82,7 +82,7 @@ async fn fetch_all(client: &Client) -> Result<()> {
8282
.fetch_all::<MyRowOwned>()
8383
.await?;
8484

85-
println!("{:?}", vec);
85+
println!("{vec:?}");
8686

8787
Ok(())
8888
}
@@ -105,7 +105,7 @@ async fn select_count(client: &Client) -> Result<()> {
105105
.fetch_one::<u64>()
106106
.await?;
107107

108-
println!("count() = {}", count);
108+
println!("count() = {count}");
109109

110110
Ok(())
111111
}
@@ -117,7 +117,7 @@ async fn watch(client: &Client) -> Result<()> {
117117
.fetch::<MyRow<'_>>()?;
118118

119119
let (version, row) = cursor.next().await?.unwrap();
120-
println!("version={}, row={:?}", version, row);
120+
println!("version={version}, row={row:?}");
121121

122122
let mut insert = client.insert("some")?;
123123
let row = MyRow {
@@ -128,7 +128,7 @@ async fn watch(client: &Client) -> Result<()> {
128128
insert.end().await?;
129129

130130
let (version, row) = cursor.next().await?.unwrap();
131-
println!("version={}, row={:?}", version, row);
131+
println!("version={version}, row={row:?}");
132132

133133
// Or you can request only events without data.
134134
let mut cursor = client

src/insert.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ impl<T> Insert<T> {
7171

7272
// TODO: what about escaping a table name?
7373
// https://clickhouse.yandex/docs/en/query_language/syntax/#syntax-identifiers
74-
let query = format!("INSERT INTO {}({}) FORMAT RowBinary", table, fields);
74+
let query = format!("INSERT INTO {table}({fields}) FORMAT RowBinary");
7575
pairs.append_pair("query", &query);
7676

7777
if client.compression.is_lz4() {
@@ -225,7 +225,7 @@ impl<T> Insert<T> {
225225
match timeout!(self, end_timeout, &mut self.handle) {
226226
Some(Ok(res)) => res,
227227
Some(Err(err)) if err.is_panic() => panic::resume_unwind(err.into_panic()),
228-
Some(Err(err)) => Err(Error::Custom(format!("unexpected error: {}", err))),
228+
Some(Err(err)) => Err(Error::Custom(format!("unexpected error: {err}"))),
229229
None => {
230230
// We can do nothing useful here, so just shut down the background task.
231231
self.handle.abort();

src/test/mock.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ impl Mock {
7474
tokio::spawn(server);
7575

7676
Self {
77-
url: format!("http://{}", addr),
77+
url: format!("http://{addr}"),
7878
tx,
7979
responses_left: responses_left_0,
8080
non_exhaustive: false,

src/watch.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ async fn init_cursor<T>(client: &Client, params: &WatchParams) -> Result<JsonCur
241241
let mut watch_sql = format!("WATCH {}{}", params.view, events);
242242

243243
if let Some(limit) = params.limit {
244-
let _ = write!(&mut watch_sql, " LIMIT {}", limit);
244+
let _ = write!(&mut watch_sql, " LIMIT {limit}");
245245
}
246246

247247
watch_sql.push_str(" FORMAT JSONEachRowWithProgress");
@@ -262,10 +262,10 @@ fn make_live_view_name(sql: &str) -> String {
262262

263263
let mut name = String::with_capacity(40);
264264
for word in &result[..] {
265-
let _ = write!(&mut name, "{:02x}", word);
265+
let _ = write!(&mut name, "{word:02x}");
266266
}
267267

268-
format!("lv_{}", name)
268+
format!("lv_{name}")
269269
}
270270

271271
#[test]

tests/test_uuid.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async fn smoke() {
3434
.unwrap();
3535

3636
let uuid = Uuid::new_v4();
37-
println!("uuid: {}", uuid);
37+
println!("uuid: {uuid}");
3838

3939
let original_row = MyRow {
4040
uuid,

0 commit comments

Comments
 (0)