Revision 2483
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/sql.py | ||
---|---|---|
967 | 967 |
old_join_cols = join_cols.copy() |
968 | 968 |
join_cols.update(util.dict_subset(mapping, e.cols)) |
969 | 969 |
log_debug('Ignoring existing rows, comparing on:\n' |
970 |
+strings.as_table(join_cols)) |
|
970 |
+strings.as_inline_table(join_cols))
|
|
971 | 971 |
assert join_cols != old_join_cols # avoid infinite loops |
972 | 972 |
except NullValueException, e: |
973 | 973 |
log_exc(e) |
Also available in: Unified diff
strings.py: Split as_table() into as_table() and as_inline_table() depending on whether the table needs to be inlined in an ordered list item or not