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