mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-11 00:53:53 +02:00
Fix a typo in lib/rdcut.cpp that threw a SQL error.
Fix typos in lib/rdsvc.cpp that threw SQL errors. Fix typos in rdlibrary/list_reports.cpp that threw SQL errors. Fix typos in utils/rdclilogedit/operations.cpp that threw SQL errors. Fix typos in utils/rddbmgr/updateschema.cpp that threw SQL errors. Signed-off-by: David Klann <dklann@broadcasttool.com>
This commit is contained in:
@@ -185,7 +185,7 @@ void ListReports::GenerateCartReport(QString *report)
|
||||
"`CART`.`LENGTH_DEVIATION`,"+ // 09
|
||||
"`CART`.`OWNER` "+ // 10
|
||||
"from `CART` "+
|
||||
"left join `GROUPS` on `CART`.`GROUP_NAME`=`GROUPS`.`NAME "+
|
||||
"left join `GROUPS` on `CART`.`GROUP_NAME`=`GROUPS`.`NAME` "+
|
||||
"left join `CUTS` on `CART`.`NUMBER`=`CUTS`.`CART_NUMBER` ";
|
||||
sql+=list_filter_sql;
|
||||
unsigned prev_cartnum=0;
|
||||
@@ -538,7 +538,7 @@ void ListReports::GenerateCartDumpCsv(QString *report,bool prepend_names)
|
||||
"`CUTS`.`FADEUP_POINT`,"+ // 29
|
||||
"`CUTS`.`FADEDOWN_POINT` "+ // 30
|
||||
"from `CART` "+
|
||||
"left join `GROUPS` on `CART`.`GROUP_NAME`=`GROUPS`.`NAME "+
|
||||
"left join `GROUPS` on `CART`.`GROUP_NAME`=`GROUPS`.`NAME` "+
|
||||
"left join `CUTS` on `CART`.`NUMBER`=`CUTS`.`CART_NUMBER` ";
|
||||
sql+=list_filter_sql;
|
||||
q=new RDSqlQuery(sql);
|
||||
|
Reference in New Issue
Block a user