diff options
Diffstat (limited to 'src/test/bench/query03')
-rw-r--r-- | src/test/bench/query03 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/bench/query03 b/src/test/bench/query03 index 0ed3a7b1e58..07050b6cc78 100644 --- a/src/test/bench/query03 +++ b/src/test/bench/query03 @@ -1,4 +1,4 @@ -select * into table temp from tenk1 where (unique2 > 301) and (unique2 < 402); -drop table temp; -select * into table temp from tenk1 where (unique2 > 301) and (unique2 < 402); -drop table temp; +select * into table temp_bench from tenk1 where (unique2 > 301) and (unique2 < 402); +drop table temp_bench; +select * into table temp_bench from tenk1 where (unique2 > 301) and (unique2 < 402); +drop table temp_bench; |