13 lines
255 B
Plaintext
13 lines
255 B
Plaintext
# name: benchmark/micro/functions/random.benchmark
|
|
# description: Run the RANDOM() function many times
|
|
# group: [functions]
|
|
|
|
name Random
|
|
group functions
|
|
|
|
load
|
|
CREATE TABLE integers AS SELECT * FROM range(100000000)
|
|
|
|
run
|
|
SELECT SUM(RANDOM()) FROM integers
|