Revision 2323
Added by Aaron Marcuse-Kubitza over 12 years ago
db_xml.py | ||
---|---|---|
181 | 181 |
value), in_table) |
182 | 182 |
else: # value is literal value; should only be string or None |
183 | 183 |
assert util.is_str(value) or value == None |
184 |
row[out_col] = sql_gen.NamedCode(out_col, value)
|
|
184 |
row[out_col] = sql_gen.NamedCol(out_col, value)
|
|
185 | 185 |
|
186 | 186 |
# Insert node |
187 | 187 |
pkeys_loc = sql.put_table(db, out_table, in_tables, row, limit, start, |
Also available in: Unified diff
sql_gen.py: Renamed NamedCode to NamedCol to better reflect its specific use