Skip to content
New issue

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

Use table alias in WHERE clause when JOINing #140

Closed
wants to merge 2 commits into from
Closed

Use table alias in WHERE clause when JOINing #140

wants to merge 2 commits into from

Commits on Aug 14, 2013

  1. Uses table alias in WHERE

    If a table alias is used for the main table, it's not valid according
    to the SQL standard to refer to it by it's "real name" (see
    http://www.postgresql.org/docs/8.2/static/queries-table-expressions.html
    #QUERIES-TABLE-ALIASES). This causes problems when doing JOIN with a
    table alias for the "main table", since previous code always used table
    name. Now, we check for a table alias.
    Victor Andrée committed Aug 14, 2013
    Configuration menu
    Copy the full SHA
    19e278c View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2013

  1. Corrects typo in "testJoinWithAliasesAndWhere" method name.

    Victor Andrée committed Aug 18, 2013
    Configuration menu
    Copy the full SHA
    8132c21 View commit details
    Browse the repository at this point in the history