You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sql="SELECT * FROM PilotsHistorySummary ORDER BY GridSite, DestinationSite, Status, VO;"
251
+
result=PilotAgentsDB()._query(sql)
252
+
assertresult["OK"], result["Message"]
253
+
values=result["Value"][1]
254
+
assertlen(values) ==5, "Expected 5 record in the summary"
255
+
# Check it corresponds to the basic "GROUP BY" query
256
+
sql="SELECT GridSite, DestinationSite, Status, VO, COUNT(*) FROM PilotAgents GROUP BY GridSite, DestinationSite, Status, VO ORDER BY GridSite, DestinationSite, Status, VO;"
sql=f"DELETE FROM PilotAgents WHERE PilotStamp IN (%s)"%pilotStampsStr
272
+
res=paDB._update(sql)
273
+
assertres["OK"], res["Message"]
274
+
# Check it corresponds to the basic "GROUP BY" query
275
+
sql="SELECT GridSite, DestinationSite, Status, VO, COUNT(*) FROM PilotAgents GROUP BY GridSite, DestinationSite, Status, VO ORDER BY GridSite, DestinationSite, Status, VO;"
0 commit comments