class HiveIdentifierPreparer(compiler.IdentifierPreparer): # Just quote everything to make things simpler / easier to upgrade reserved_words = UniversalSet() def __init__(self, dialect): super(HiveIdentifierPreparer, self).__init__( dialect, initial_quote='`', )
class PrestoIdentifierPreparer(compiler.IdentifierPreparer): # Just quote everything to make things simpler / easier to upgrade reserved_words = UniversalSet()