We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cc7c5f commit 61e3e02Copy full SHA for 61e3e02
sdk/python/feast/infra/offline_stores/contrib/trino_offline_store/connectors/upload.py
@@ -115,7 +115,7 @@ def _is_nan(value: Any) -> bool:
115
116
def _format_value(row: pd.Series, schema: Dict[str, Any]) -> str:
117
formated_values = []
118
- for row_name, row_value in row.iteritems():
+ for row_name, row_value in row.items():
119
if schema[row_name].startswith("timestamp"):
120
if isinstance(row_value, datetime):
121
row_value = format_datetime(row_value)
0 commit comments