Created
July 16, 2026 08:54
-
-
Save kavirajk/54e59a0e3d8d93bd40a51b3ac9c88ff8 to your computer and use it in GitHub Desktop.
schema.sql (benchmark_test)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE IF NOT EXISTS benchmark_test | |
| ( | |
| id UInt64, | |
| value Array(Float64) | |
| ) | |
| ENGINE = MergeTree | |
| ORDER BY id; | |
| INSERT INTO benchmark_test SELECT number, arrayMap(x -> rand64()/1e19, range(200)) FROM numbers(1000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment