You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generates a stream of zeros (a table with one column 'zero' of type 'UInt8') of specified size.
54
+
This table function is used in performance tests, where you want to spend as little time as possible to data generation while testing some other parts of queries.
55
+
In contrast to the `zeros_mt`, this table function is using single thread for data generation.
56
+
Example:
57
+
[example:1]
58
+
This query will test the speed of `randomPrintableASCII` function using single thread.
59
+
See also the `system.zeros` table.)",
60
+
.examples={{"1", "SELECT count() FROM zeros(100000000) WHERE NOT ignore(randomPrintableASCII(10))", ""}}
Generates a stream of zeros (a table with one column 'zero' of type 'UInt8') of specified size.
66
+
This table function is used in performance tests, where you want to spend as little time as possible to data generation while testing some other parts of queries.
67
+
In contrast to the `zeros`, this table function is using multiple threads for data generation, according to the `max_threads` setting.
68
+
Example:
69
+
[example:1]
70
+
This query will test the speed of `randomPrintableASCII` function using multiple threads.
71
+
See also the `system.zeros` table.
72
+
)",
73
+
.examples={{"1", "SELECT count() FROM zeros_mt(1000000000) WHERE NOT ignore(randomPrintableASCII(10))", ""}}
0 commit comments