Revision 6005
Added by Aaron Marcuse-Kubitza about 12 years ago
lib/sql_io.py | ||
---|---|---|
785 | 785 |
**insert_args)) |
786 | 786 |
# otherwise, there is already an entry for every row |
787 | 787 |
|
788 |
assert (sql.table_row_count(db, into) |
|
789 |
>= sql.table_row_count(db, full_in_table)) |
|
790 |
|
|
791 | 788 |
sql.empty_temp(db, insert_in_tables+[full_in_table]) |
792 | 789 |
|
793 | 790 |
srcs = [] |
Also available in: Unified diff
sql_io.py: put_table(): Removed assertion that into's row count be at least full_in_table's row count, because now that DISTINCT ON is used to satisfy the into table pkey, this is no longer necessarily true