app/django/db/models/sql/constants.py
changeset 323 ff1a9aa48cfd
parent 54 03e267d67478
equal deleted inserted replaced
322:6641e941ef1e 323:ff1a9aa48cfd
    13 
    13 
    14 # Separator used to split filter strings apart.
    14 # Separator used to split filter strings apart.
    15 LOOKUP_SEP = '__'
    15 LOOKUP_SEP = '__'
    16 
    16 
    17 # Constants to make looking up tuple values clearer.
    17 # Constants to make looking up tuple values clearer.
    18 # Join lists
    18 # Join lists (indexes into the tuples that are values in the alias_map
       
    19 # dictionary in the Query class).
    19 TABLE_NAME = 0
    20 TABLE_NAME = 0
    20 RHS_ALIAS = 1
    21 RHS_ALIAS = 1
    21 JOIN_TYPE = 2
    22 JOIN_TYPE = 2
    22 LHS_ALIAS = 3
    23 LHS_ALIAS = 3
    23 LHS_JOIN_COL = 4
    24 LHS_JOIN_COL = 4