We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Temporary view creation can be implemented by adding these lines to the CreateView class.
CreateView
def __init__(self, element, selectable, on=None, bind=None, or_replace=False, temp=False, options=None): super(CreateView, self).__init__(element, on=on, bind=bind) ... self.temp = temp
and
def visit_create_view(create, compiler, **kw): ... if create.temp: text += "TEMP "
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Temporary view creation can be implemented by adding these lines to the
CreateView
class.and
The text was updated successfully, but these errors were encountered: