diff options
Diffstat (limited to 'src/test/bench/query20')
| -rw-r--r-- | src/test/bench/query20 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/bench/query20 b/src/test/bench/query20 index e544ea63f4..db7568dff7 100644 --- a/src/test/bench/query20 +++ b/src/test/bench/query20 @@ -1,4 +1,4 @@ -select int4min(unique2) as x into table temp from tenk1; -drop table temp; -select int4min(unique2) as x into table temp from tenk1; -drop table temp; +select min(unique2) as x into table temp_bench from tenk1; +drop table temp_bench; +select min(unique2) as x into table temp_bench from tenk1; +drop table temp_bench; |
