Skip to content

Commit

Permalink
Merge pull request openGemini#681 from openGemini/skip_case
Browse files Browse the repository at this point in the history
chore: skip the case testserver_write_outoforder
  • Loading branch information
vicky-run authored Jul 26, 2024
2 parents 410c12d + 5497ef3 commit 8c8e855
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10713,7 +10713,7 @@ func TestServer_Write_OutOfOrder(t *testing.T) {
name: "create database with shard group duration and index duration should succeed",
command: `CREATE DATABASE db3 WITH SHARD DURATION 12h index duration 24h name rp3`,
exp: `{"results":[{"statement_id":0}]}`,
sikp: true,
skip: true,
},
},
}
Expand Down Expand Up @@ -10757,19 +10757,19 @@ func TestServer_Write_OutOfOrder(t *testing.T) {
name: "select val from in date 2021-11-26 should success",
command: `select val from db3.rp3.cpu where time>='2021-11-26T00:00:00Z' and time<='2021-11-26T23:00:00Z' and "host"='serverB'`,
exp: `{"results":[{"statement_id":0,"series":[{"name":"cpu","columns":["time","val"],"values":[["2021-11-26T10:00:00Z",200],["2021-11-26T14:00:00Z",23.2]]}]}]}`,
skip: true,
skip: true,
},
{
name: "select val from in date 2021-11-27 should success",
command: `select val from db3.rp3.cpu where time>='2021-11-27T00:00:00Z' and time<='2021-11-27T23:00:00Z' and "host"='serverB'`,
exp: `{"results":[{"statement_id":0,"series":[{"name":"cpu","columns":["time","val"],"values":[["2021-11-27T10:00:00Z",106]]}]}]}`,
skip: true,
skip: true,
},
{
name: "select val from 25 to 26 should success",
command: `select val from db3.rp3.cpu where time>='2021-11-25T00:00:00Z' and time<='2021-11-26T23:00:00Z' and "host"='serverB'`,
exp: `{"results":[{"statement_id":0,"series":[{"name":"cpu","columns":["time","val"],"values":[["2021-11-25T13:00:00Z",23.3],["2021-11-26T10:00:00Z",200],["2021-11-26T14:00:00Z",23.2]]}]}]}`,
skip: true,
skip: true,
},
}

Expand Down

0 comments on commit 8c8e855

Please sign in to comment.