- Timestamp:
- May 21, 2013, 5:56:03 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20130419/Ohana/src/dvomerge/src/dvomerge.c
r29938 r35588 10 10 if (argc == 6) { 11 11 if (!strcasecmp (argv[2], "and")) { 12 if (VERIFY) { 13 fprintf (stderr, "WARNING / ERROR : dvomerge (input1) and (input2) into (output) : VERIFY mode not implemented\n"); 14 exit (3); 15 } 12 16 dvomergeCreate (argc, argv); 13 17 } else { 18 if (VERIFY) { 19 fprintf (stderr, "WARNING / ERROR : dvomerge (input) into (output) from (list) : VERIFY mode not implemented\n"); 20 exit (3); 21 } 14 22 dvomergeFromList (argc, argv); 15 23 } … … 26 34 } 27 35 28 /* we have two possiblemodes of operation:36 /* we have two major modes of operation: 29 37 30 Create : dvomerge (in1) and (in2) to (out) -- create a new db from two input dbs 31 Update : dvomerge (in) into (out) -- merge a new db into an existing db 32 Continue : dvomerge (in) into (out) continue -- merge a new db into an existing db 38 Create : dvomerge (in1) and (in2) to (out) -- create a new db from two input dbs 39 Update : dvomerge (in) into (out) -- merge a new db into an existing db 33 40 41 we also have varients on Update: 42 Continue : dvomerge (in) into (out) continue -- merge only unmerged tables into the existing db 43 From List : dvomerge (in) into (out) from (list) -- merge only specified tables into the existing db 44 45 neither of the 2 above modes update the image table 34 46 */
Note:
See TracChangeset
for help on using the changeset viewer.
