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

Switch stabilization tests to new info #367

Merged
merged 2 commits into from
Mar 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion extension/src/hyperloglog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ fn hyperloglog_final_inner(
}

extension_sql!("\n\
CREATE AGGREGATE hyperloglog(size int, value AnyElement)\n\
CREATE AGGREGATE hyperloglog(size integer, value AnyElement)\n\
(\n\
stype = internal,\n\
sfunc = hyperloglog_trans,\n\
Expand Down
2 changes: 1 addition & 1 deletion extension/src/lttb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub fn lttb_final_inner(
}

extension_sql!("\n\
CREATE AGGREGATE toolkit_experimental.lttb(ts TIMESTAMPTZ, value DOUBLE PRECISION, resolution INT) (\n\
CREATE AGGREGATE toolkit_experimental.lttb(ts TIMESTAMPTZ, value DOUBLE PRECISION, resolution integer) (\n\
sfunc = toolkit_experimental.lttb_trans,\n\
stype = internal,\n\
finalfunc = toolkit_experimental.lttb_final\n\
Expand Down
1 change: 1 addition & 0 deletions extension/src/stabilization_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ crate::functions_stabilized_at! {
variance_x(statssummary2d,text),
variance_y(statssummary2d,text),
x_intercept(statssummary2d),
distinct_count(hyperloglog),
}
}

Expand Down
Loading