13 lines
296 B
Plaintext
13 lines
296 B
Plaintext
# name: benchmark/cast/varchar_bignum_10M.benchmark
|
|
# description: Casting of a Varchar with 10M digits to bignum
|
|
# group: [cast]
|
|
|
|
name Casting of a Varchar with 10M digits to bignum
|
|
group csv
|
|
|
|
load
|
|
CREATE TABLE t1 AS select concat('1', repeat('0', 10000000)) as a;
|
|
|
|
run
|
|
SELECT a::bignum from t1
|