Hi, I'm working on a dialect for Redshift. Redshift is peculiar in that it doesn't support indexes, instead it saves things in a certain sort order. I'd like to simply ignore any CreateView DDL statement that's executed, but I was wondering how I go about implementing this. I've already tried overwriting visit_create_index in DDLCompiler to return None, but that results in
ProgrammingError: (psycopg2.ProgrammingError) can't execute an empty query Is there some built-in way to simply not do anything at all? Should I return something like SELECT 1 WHERE FALSE ? -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/d/optout.
