-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
[Bugfix] Fix regression error introduced in #29095 #29573
[Bugfix] Fix regression error introduced in #29095 #29573
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @tarokkk!
@tarokkk can you please add a bug_fix changelog entry in https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/.chloggen? |
Done |
Co-authored-by: Alex Boten <alex@boten.ca>
/lgtm |
Anything else for this to be merged? |
**Description:** <Describe what has changed.> as #29626 (comment) mentioned, this PR adds an integration test for clickhouse exporter and it brings those benefits: - Verify tables are properly created in clickhouse after any breaking change(filter out bug like [this](#29573) before merge) - Verify if any bugs occur during data insertion like missed data or insert into an error column([30210](#30210)) .etc. - Compatibility testing for `clickhouse-server:23-alpine` and `clickhouse-server:22-alpine` close #29626 --------- Co-authored-by: Tyler Helmuth <12352919+TylerHelmuth@users.noreply.github.com>
Description:
Fixing regression error in #29095
The name of the
timeField
ingenerateTTLExpr
was ignored and defaulted toTimestamp
. The problem is that different tables have different names for this field. Now it is specified at each table creation.