|
|
|
|
|
by roman-holovin
1804 days ago
|
|
INSERT INTO user (area, age, active)
SELECT abs(random()) % 1000000, (abs(random()) % 3 + 1) * 5, abs(random()) % 2 FROM generate_series(1, 100000000, 1) Faster by 10% than fastest author implementation on my machine - 19 seconds against 21 for 'threaded_batched'. |
|