fix: madd order by in select query to have the output deterministic

pull/24376/head
Nga Tran 2021-08-13 09:55:38 -04:00
parent cedaf2d5f2
commit 5704b7f622
1 changed files with 1 additions and 1 deletions

View File

@ -1224,7 +1224,7 @@ mod tests {
let response = client
.get(&format!(
"{}/iox/api/v1/databases/MyOrg_MyBucket/query?q={}&format=json",
server_url, "select%20*%20from%20h2o_temperature"
server_url, "select%20*%20from%20h2o_temperature%20order%20by%20surface_degrees"
))
.send()
.await;