Revision 5387
Added by Aaron Marcuse-Kubitza about 12 years ago
sql_io.py | ||
---|---|---|
26 | 26 |
table = sql_gen.as_Table(table) |
27 | 27 |
cols = filter(lambda c: sql_gen.is_text_col(db, c), |
28 | 28 |
sql.table_cols(db, table)) |
29 |
try: cols.remove(sql.pkey_col_(db, table))
|
|
29 |
try: cols.remove(sql.pkey_col(db, table)) |
|
30 | 30 |
except ValueError: pass |
31 | 31 |
if not cols: return |
32 | 32 |
|
Also available in: Unified diff
sql.py: Renamed pkey_col_() to pkey_col()