11 lines
225 B
Python
11 lines
225 B
Python
# ruff: noqa: F401
|
|
|
|
from sqlglot.optimizer.optimizer import RULES, optimize
|
|
from sqlglot.optimizer.scope import (
|
|
Scope,
|
|
build_scope,
|
|
find_all_in_scope,
|
|
find_in_scope,
|
|
traverse_scope,
|
|
walk_in_scope,
|
|
)
|