Revision 2082
Added by Aaron Marcuse-Kubitza over 12 years ago
db_xml.py | ||
---|---|---|
164 | 164 |
pkeys_table = sql.put_table(db, esc_name(out_table), row.keys(), |
165 | 165 |
qual_name(in_table), row.values(), pkey_, row_ct_ref, table_is_esc=True) |
166 | 166 |
|
167 |
import sys; sys.stderr.write(str(node)) |
|
168 | 167 |
if commit: db.db.commit() |
169 |
raise NotImplementedError('By-column optimization not available yet') |
|
168 |
return (pkeys_table, pkey_) |
Also available in: Unified diff
db_xml.py: put_table(): Return the (table, col) where the pkeys are made available, now that this information is available from sql.put_table()