File: combine.sql

package info (click to toggle)
python-ecdsa 0.19.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,608 kB
  • sloc: python: 12,314; sh: 22; makefile: 14; sql: 12
file content (7 lines) | stat: -rw-r--r-- 271 bytes parent folder | download
1
2
3
4
5
6
7
attach 'session-to_merge.sqlite' as toMerge;
BEGIN;
    insert into work_items select * from toMerge.work_items;
    insert into mutation_specs select * from toMerge.mutation_specs;
    insert into work_results select * from toMerge.work_results;
COMMIT;
detach toMerge;