コード例 #1
0
ファイル: types.py プロジェクト: BabelTower/ibis
    def compile(self, limit=None):
        """
        Compile expression to whatever execution target, to verify

        Returns
        -------
        compiled : value or list
           query representation or list thereof
        """
        from ibis.client import compile
        return compile(self, limit=limit)
コード例 #2
0
    def compile(self, limit=None):
        """
        Compile expression to whatever execution target, to verify

        Returns
        -------
        compiled : value or list
           query representation or list thereof
        """
        from ibis.client import compile
        return compile(self, limit=limit)
コード例 #3
0
ファイル: types.py プロジェクト: jp-harvey/ibis
    def compile(
        self,
        limit=None,
        timecontext: Optional[TimeContext] = None,
        params=None,
    ):
        """
        Compile expression to whatever execution target, to verify

        Returns
        -------
        compiled : value or list
           query representation or list thereof
        """
        from ibis.client import compile

        return compile(self,
                       limit=limit,
                       timecontext=timecontext,
                       params=params)