You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let statement = format!("SELECT \"from\", msg, received FROM validator_messages WHERE {} ORDER BY received DESC LIMIT {}", where_clauses.join(" AND "), limit);
27
+
let statement = format!(r#"SELECT "from", msg, received FROM validator_messages WHERE {} ORDER BY received DESC LIMIT {}"#, where_clauses.join(" AND "), limit);
32
28
match connection.prepare(&statement).await{
33
29
Ok(select) => match connection.query(&select, params.as_slice()).await{
0 commit comments