Changeset 19135


Ignore:
Timestamp:
08/03/18 16:14:12 (6 years ago)
Author:
tbretz
Message:
Fixed some minor typos.
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/fits2sql.cc

    r19126 r19135  
    44#include "Database.h"
    55
     6#include "tools.h"
    67#include "Time.h"
    78#include "Configuration.h"
     
    6364        ("engine",         var<string>(""),           "Database engine to be used when a new table is created")
    6465        ("row-format",     var<string>(""),           "Defines the ROW_FORMAT keyword for table creation")
    65         ("duplicate",      vars<string>(""),          "Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression")
     66        ("duplicate",      vars<string>(),            "Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression")
    6667        ("ignore-errors",  po_switch(),               "Adds the IGNORE keyword to the INSERT query (turns errors into warnings, ignores rows with errors)")
    6768        ;
     
    312313    const vector<string> primary = conf.Vec<string>("primary");
    313314
    314     const vactor<string> duplicate = conf.Vec<string>("duplicate");
     315    const vector<string> duplicate = conf.Vec<string>("duplicate");
    315316    const vector<string> notsigned = conf.Vec<string>("unsigned");
    316317
  • trunk/FACT++/src/root2sql.cc

    r19126 r19135  
    44#include "Database.h"
    55
     6#include "tools.h"
    67#include "Time.h"
    78#include "Configuration.h"
     
    6667        ("engine",         var<string>(""),           "Database engine to be used when a new table is created")
    6768        ("row-format",     var<string>(""),           "Defines the ROW_FORMAT keyword for table creation")
    68         ("duplicate",      vars<string>(""),          "Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression")
     69        ("duplicate",      vars<string>(),            "Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression")
    6970        ("ignore-errors",  po_switch(),               "Adds the IGNORE keyword to the INSERT query (turns errors into warnings, ignores rows with errors)")
    7071        ;
Note: See TracChangeset for help on using the changeset viewer.