Revision 2437
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/db_xml.py | ||
---|---|---|
152 | 152 |
def pkey(table): return sql.pkey(db, table, True) |
153 | 153 |
|
154 | 154 |
def put_table_(node, parent_ids_loc=None): |
155 |
return put_table(db, node, in_table, commit, row_ins_ct_ref,
|
|
156 |
parent_ids_loc=parent_ids_loc) |
|
155 |
return put_table(db, node, in_table, commit, |
|
156 |
row_ins_ct_ref=row_ins_ct_ref, parent_ids_loc=parent_ids_loc)
|
|
157 | 157 |
|
158 | 158 |
out_table = name_of(node) |
159 | 159 |
special_funcs = set(['_simplifyPath']) |
Also available in: Unified diff
db_xml.py: put_table(): put_table_(): Fixed bug where row_ins_ct_ref needed to be passed recursively to put_table() as keyword arg, because the in_row_ct_ref is not passed recursively