Skip to content

Commit

Permalink
chore: update gen_matrix.py script
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Feb 5, 2024
1 parent a53b513 commit 875d03a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
8 changes: 1 addition & 7 deletions gen_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,7 @@ def get_leaf_classes(op):


def main():
internal_ops = {
# Never translates into anything
ops.UnresolvedExistsSubquery,
ops.ScalarParameter,
}

public_ops = frozenset(get_leaf_classes(ops.Value)) - internal_ops
public_ops = frozenset(get_leaf_classes(ops.Value))
support = {"operation": [f"{op.__module__}.{op.__name__}" for op in public_ops]}
support.update(
(name, list(map(backend.has_operation, public_ops)))
Expand Down
4 changes: 2 additions & 2 deletions ibis/backends/flink/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import ibis.expr.operations as ops
import ibis.expr.schema as sch
import ibis.expr.types as ir
from ibis.backends.base import BaseBackend, CanCreateDatabase
from ibis.backends.base import BaseBackend, CanCreateDatabase, NoUrl
from ibis.backends.base.sql.ddl import fully_qualified_re, is_fully_qualified
from ibis.backends.flink.compiler.core import FlinkCompiler
from ibis.backends.flink.ddl import (
Expand All @@ -38,7 +38,7 @@
from ibis.api import Watermark


class Backend(BaseBackend, CanCreateDatabase):
class Backend(BaseBackend, CanCreateDatabase, NoUrl):
name = "flink"
compiler = FlinkCompiler
supports_temporary_tables = True
Expand Down

0 comments on commit 875d03a

Please sign in to comment.