-
Notifications
You must be signed in to change notification settings - Fork 121
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
remove all duplicated logic, move all macroses and query parsing functionality to golang, and compile golang parser to WASM #690
base: master
Are you sure you want to change the base?
Conversation
# Conflicts: # src/datasource/frontend-only/sql-series/toAnnotation.test.ts # src/datasource/sql-query/sql-query-macros.ts # src/datasource/sql-query/sql_query.ts # src/spec/query_specs.jest.ts # src/spec/sql_series_specs.jest.ts
Signed-off-by: Eugene Klimov <[email protected]>
Signed-off-by: Eugene Klimov <[email protected]>
Signed-off-by: Eugene Klimov <[email protected]>
Signed-off-by: Eugene Klimov <[email protected]>
Signed-off-by: Eugene Klimov <[email protected]>
Signed-off-by: Eugene Klimov <[email protected]>
Signed-off-by: Eugene Klimov <[email protected]>
Signed-off-by: Eugene Klimov <[email protected]>
Signed-off-by: Eugene Klimov <[email protected]>
Signed-off-by: Eugene Klimov <[email protected]>
# "/Grafana Datasource Plugin For Clickhouse/e2e/many categories/*": [ | ||
# (Fail, "Waiting for the fix https://github.com/Altinity/clickhouse-grafana/issues/705") | ||
# ], | ||
"/Grafana Datasource Plugin For Clickhouse/e2e/many categories/*": [ |
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.
but we resolved issue?, we need to comment it
@@ -225,40 +225,10 @@ def annotations_without_time_reformatting(self): | |||
with delay(): | |||
assert actions.compare_screenshots_percent(screenshot_name_1="event_tme_panel", screenshot_name_2="toUInt64_panel") > 0.9, error() | |||
|
|||
|
|||
@TestScenario | |||
def many_categories(self): |
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.
wrong way, why we remove tests?
@@ -31,7 +31,7 @@ def function_check(self, query, expected_reformatted_query): | |||
|
|||
with Then("I check reformatted query"): | |||
with delay(): | |||
assert expected_reformatted_query in sql_editor.get_reformatted_query(query_name='A'), error() | |||
assert expected_reformatted_query.replace("\n", "") in sql_editor.get_reformatted_query(query_name='A'), error() |
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.
maybe space instead of empty line?
fix #688