We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19f8a3e commit 16e1c0aCopy full SHA for 16e1c0a
1 file changed
python/feldera/testutils.py
@@ -196,11 +196,11 @@ def validate_view(pipeline: Pipeline, view: ViewSpec):
196
197
if extra_rows:
198
log("Extra rows in Feldera output, but not in the ad hoc query output")
199
- log(json.dumps(extra_rows))
+ log(json.dumps(extra_rows, default=str))
200
201
if missing_rows:
202
log("Extra rows in the ad hoc query output, but not in Feldera output")
203
- log(json.dumps(missing_rows))
+ log(json.dumps(missing_rows, default=str))
204
except Exception as e:
205
log(f"Error querying view '{view.name}': {e}")
206
log(f"Ad-hoc Query: {view_query}")
0 commit comments