Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
sarus_sql / sarus_sql / engine / big_query.py
Size: Mime:
# type: ignore
from snsql.sql.reader.base import NameCompare


class BigQueryNameCompare(NameCompare):
    def __init__(self, search_path=None):
        self.search_path = (
            search_path if search_path is not None else ["public"]
        )

    def identifier_match(self, from_query, from_meta):
        return self.strip_escapes(from_query) == self.strip_escapes(from_meta)