Skip to content

BUG (unexpected behavior): Class should not immediately execute process_query when instantiated with a query. #22

Description

@simeonreusch

Currently, e.g. the PostgreSQLQueryProcessor (this applies to all QueryProcessors) immediately executes process_query when a query parameter is parsed.

This is unexpcted and should be changed, so it always works as follows:

a)

qp = PostgreSQLQueryProcessor()
qp.set_query(query)
qp.process_query()

or b)

qp = PostgreSQLQueryProcessor(query=query)
qp.process_query()

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions