equal
deleted
inserted
replaced
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 |