Skip to content

Commit

Permalink
docs(flink): add backend back to support matrix df
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman authored and cpcloud committed Nov 15, 2023
1 parent b53feac commit e846e80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/backends/app/backend_info_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def backends_info_df():
"datafusion": ["sql"],
"druid": ["sqlalchemy", "sql"],
"duckdb": ["sqlalchemy", "sql"],
"flink": ["string", "sql"],
"impala": ["string", "sql"],
"mssql": ["sqlalchemy", "sql"],
"mysql": ["sqlalchemy", "sql"],
Expand Down
4 changes: 1 addition & 3 deletions gen_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ def main():
support = {"operation": [f"{op.__module__}.{op.__name__}" for op in public_ops]}
support.update(
(name, list(map(backend.has_operation, public_ops)))
# exclude flink until https://github.com/apache/flink/pull/23141 is
# merged and released we also need to roll it into poetry
for name, backend in get_backends(exclude=("flink",))
for name, backend in get_backends()
)

df = pd.DataFrame(support).set_index("operation").sort_index()
Expand Down

0 comments on commit e846e80

Please sign in to comment.