We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
相同的语句,clickhouse 查询成功,byconity 查询报错 复现步骤:
id
value
The text was updated successfully, but these errors were encountered:
用的byconity版本是什么,有这个commit吗
Sorry, something went wrong.
v1.0.0,有这个commit
xuhaitao23
No branches or pull requests
相同的语句,clickhouse 查询成功,byconity 查询报错
复现步骤:
CREATE TABLE flow_tag1.test_histogram
(
id
UInt32,value
Float64)
ENGINE = CnchMergeTree
ORDER BY id;
INSERT INTO test_histogram (id, value) VALUES
(1, 1.5),
(2, 2.3),
(3, 3.7),
(4, 4.1),
(5, 5.6),
(6, 6.8),
(7, 7.2),
(8, 8.9),
(9, 9.0),
(10, 10.5);
SELECT
histogram(10)(if(value > 0, value, NULL)) AS xx,
toTypeName(xx)
FROM (database).test_histogram
a. byconity 版本:21.8.7,报错
b. clickhouse 版本:23.8.7,不报错
The text was updated successfully, but these errors were encountered: