Skip to content

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

@simeonreusch

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()

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No fields configured for Bug.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions