Revision 2463
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/sql.py | ||
---|---|---|
867 | 867 |
|
868 | 868 |
def log_debug(msg): db.log_debug(msg, level=1.5) |
869 | 869 |
|
870 |
log_debug('Putting columns: '+str(mapping)) |
|
871 |
|
|
870 | 872 |
temp_prefix = out_table.name |
871 | 873 |
pkeys = sql_gen.Table(temp_prefix+'_pkeys') |
872 | 874 |
|
lib/db_xml.py | ||
---|---|---|
218 | 218 |
row[out_col] = sql_gen.NamedCol(out_col, value) |
219 | 219 |
|
220 | 220 |
# Insert node |
221 |
db.log_debug('Putting columns: '+str(row), level=1.5) |
|
222 | 221 |
pkeys_loc = sql.put_table(db, out_table, in_tables, row, row_ins_ct_ref) |
223 | 222 |
if commit: db.db.commit() |
224 | 223 |
|
Also available in: Unified diff
Moved "Putting columns" debug message from db_xml.py put_table() to sql.py put_table() to put it in the same place as the other debug messages