@@ -118,9 +118,7 @@ def _populate_virtualization_storage_costs(self, sql_params):
118
118
sql_params ["month" ] = start_date .strftime ("%m" )
119
119
pvc_to_vm_sql = pkgutil .get_data ("masu.database" , "trino_sql/openshift/pvc_to_vm_name_mapping.sql" )
120
120
pvc_to_vm_sql = pvc_to_vm_sql .decode ("utf-8" )
121
- rows = self ._execute_trino_raw_sql_query (
122
- pvc_to_vm_sql , sql_params = sql_params , context = sql_params , log_ref = "retrieve pvc to vm mapping"
123
- )
121
+ rows = self ._execute_trino_multipart_sql_query (pvc_to_vm_sql , bind_params = sql_params )
124
122
try :
125
123
pvc_to_vm_json_str = rows [0 ][0 ]
126
124
except IndexError :
@@ -132,9 +130,7 @@ def _populate_virtualization_storage_costs(self, sql_params):
132
130
sql_params ["pvc_to_vm_json_str" ] = pvc_to_vm_json_str
133
131
sql = pkgutil .get_data ("masu.database" , "sql/openshift/reporting_ocp_vm_summary_p_storage.sql" )
134
132
sql = sql .decode ("utf-8" )
135
- self ._prepare_and_execute_raw_sql_query (
136
- "reporting_ocp_vm_summary_p" , sql , sql_params , operation = "DELETE/INSERT"
137
- )
133
+ self ._prepare_and_execute_raw_sql_query ("reporting_ocp_vm_summary_p" , sql , sql_params , operation = "INSERT" )
138
134
139
135
def update_line_item_daily_summary_with_tag_mapping (self , start_date , end_date , report_period_ids = None ):
140
136
"""Maps child keys to parent key.
0 commit comments