Changeset 19062
- Timestamp:
- 07/18/18 16:25:56 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/root2sql.cc
r18961 r19062 55 55 ("max", var<int64_t>(int64_t(0)), "Maximum number of events to process (0: all), mainly for test purpose") 56 56 ("no-insert", po_switch(), "Does not insert any data into the table") 57 ("engine", var<string>("MyISAM"), "Database engine to be used when a new table is created") 57 58 ("print-branches", po_switch(), "Print the branches found in the tree") 58 59 ("print-leaves", po_switch(), "Print the leaves found in the tree (this is what is processed)") … … 131 132 "\n" 132 133 "All columns are created as NOT NULL as default and the table is created as " 133 "MyISAM .\n"134 "MyISAM (default).\n" 134 135 "\n" 135 136 "For debugging purpose, or to just create or drop a table, the final insert " … … 268 269 const bool noinsert = conf.Get<bool>("no-insert"); 269 270 271 const string engine = conf.Get<string>("engine"); 272 270 273 const bool print_branches = conf.Get<bool>("print-branches"); 271 274 const bool print_leaves = conf.Get<bool>("print-leaves"); … … 426 429 ")\n" 427 430 "DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci\n" 428 "ENGINE= MyISAM\n"431 "ENGINE="+engine+"\n" 429 432 "COMMENT='created by "+conf.GetName()+"'\n"; 430 433
Note:
See TracChangeset
for help on using the changeset viewer.