Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate table function #8994

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
3407d99
Added draft version of random table function.
qoega Jan 30, 2020
3f4db95
fix
qoega Jan 31, 2020
5717d23
build fix
qoega Jan 31, 2020
5688939
implemented couple of generators
qoega Feb 1, 2020
ad9cdd0
Fix everything, add docs.
qoega Feb 4, 2020
e44bc18
Merge branch 'master' of https://github.com/ClickHouse/ClickHouse int…
qoega Feb 4, 2020
683a639
doc fixes
qoega Feb 4, 2020
f8e66e8
style fixes
qoega Feb 4, 2020
513c2e8
recanonize linux build
qoega Feb 6, 2020
6597176
Added draft version of random table function.
qoega Jan 30, 2020
7a4143d
fix
qoega Jan 31, 2020
11c748d
build fix
qoega Jan 31, 2020
5fae4f8
implemented couple of generators
qoega Feb 1, 2020
907037b
Fix everything, add docs.
qoega Feb 4, 2020
9e542f6
doc fixes
qoega Feb 4, 2020
41ffe2d
style fixes
qoega Feb 4, 2020
ceaff36
recanonize linux build
qoega Feb 6, 2020
76a74d2
Merge branch 'qoega/random-table-function-small' of github.com:qoega/…
qoega Feb 7, 2020
118d4e0
Merge branch 'qoega/random-table-function-small' of github.com:qoega/…
qoega Feb 7, 2020
af34a65
Merge remote-tracking branch 'origin' into qoega/random-table-functio…
qoega Feb 10, 2020
e2688e0
fix indufficient arguments parsing
qoega Feb 11, 2020
db6764d
Merge branch 'qoega/random-table-function-small' of github.com:qoega/…
qoega Feb 11, 2020
9e609cc
Merge branch 'master' of https://github.com/clickhouse/clickhouse int…
qoega Feb 11, 2020
a7ec7a6
pcg64 -> pcg64_oneseq
qoega Feb 11, 2020
647994f
pcg64_oneseq -> pcg32
qoega Feb 11, 2020
fbddec5
Merge remote-tracking branch 'origin' into qoega/random-table-functio…
qoega Feb 11, 2020
7b462e2
Merge remote-tracking branch 'origin' into qoega/random-table-functio…
qoega Feb 25, 2020
d2ab30e
implement StorageGenerate
qoega Feb 26, 2020
f96626c
fix tests
qoega Feb 26, 2020
1f3c6ed
fix sed with binary results (sed: RE error: illegal byte sequence)
qoega Feb 26, 2020
181dd7d
add perftest
qoega Feb 26, 2020
f1d864a
add storage test and fix string generator
qoega Feb 27, 2020
4c0f378
recanonize on linux
qoega Feb 27, 2020
cf9153e
Merge remote-tracking branch 'origin' into qoega/random-table-functio…
qoega Feb 27, 2020
0a25fe7
more docs
qoega Feb 28, 2020
01af9e3
save changes
qoega Mar 2, 2020
77c2b83
Merge branch 'master' into qoega/random-table-function-small
qoega Mar 2, 2020
afbf753
Merge remote-tracking branch 'origin' into qoega/random-table-functio…
qoega Mar 3, 2020
8acf683
fix finite result for infinite query
qoega Mar 3, 2020
333161b
Merge remote-tracking branch 'origin' into qoega/random-table-functio…
qoega Mar 4, 2020
f0a5985
fix query in perf test
qoega Mar 4, 2020
c210011
Merge remote-tracking branch 'origin' into qoega/random-table-functio…
qoega Mar 4, 2020
92f84c8
Update TableFunctionGenerate.h
alexey-milovidov Mar 5, 2020
adcf173
Update TableFunctionGenerate.cpp
alexey-milovidov Mar 5, 2020
678cc00
Update StorageGenerate.cpp
alexey-milovidov Mar 5, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion dbms/src/DataTypes/DataTypeInterval.h
Expand Up @@ -12,7 +12,7 @@ namespace DB
* Mostly the same as Int64.
* But also tagged with interval kind.
*
* Intended isage is for temporary elements in expressions,
* Intended usage is for temporary elements in expressions,
* not for storing values in tables.
*/
class DataTypeInterval final : public DataTypeNumberBase<Int64>
Expand Down
2 changes: 1 addition & 1 deletion dbms/src/DataTypes/DataTypeNumberBase.cpp
Expand Up @@ -257,7 +257,7 @@ template class DataTypeNumberBase<UInt8>;
template class DataTypeNumberBase<UInt16>;
template class DataTypeNumberBase<UInt32>;
template class DataTypeNumberBase<UInt64>;
template class DataTypeNumberBase<UInt128>;
template class DataTypeNumberBase<UInt128>; // used only in UUID
template class DataTypeNumberBase<Int8>;
template class DataTypeNumberBase<Int16>;
template class DataTypeNumberBase<Int32>;
Expand Down