9 lines
205 B
Python
9 lines
205 B
Python
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,
|
|
)
|