sofhiaazzhr's picture
initial structure
efc0c0a
raw
history blame
317 Bytes
"""BaseCompiler — contract for IR → executable shape (SQL string or pandas chain)."""
from abc import ABC, abstractmethod
from ..ir.models import QueryIR
class BaseCompiler(ABC):
"""Subclasses: SqlCompiler, PandasCompiler."""
@abstractmethod
def compile(self, ir: QueryIR) -> object:
...