Describe the bug
UI shows No rows returned, when in reality, ad-hoc query failed.
It does not show error returned by failing ad-hoc query
To Reproduce
Run ad-hoc query with pipeline configured with very low rss.
Expected behavior
Ad-hoc query shows the error instead of saying No rows returned
Screenshots
Context (please complete the following information):
- Feldera Version: 0.299.0
- Environment: MacOS
- Browser: Zen ( Firefox )
- Pipeline Configuration/SQL code: NA
Additional context
you can checkout #6170 and use:
CREATE TABLE seeds (
id BIGINT NOT NULL
) WITH (
'materialized' = 'true',
'connectors' = '[{
"transport": {
"name": "datagen",
"config": {
"plan": [{ "limit": 5000000,
"fields": { "id": { "strategy": "increment" } } }]
}
}
}]'
);
set workers to 1 and "datafusion_memory_mb": 60, run select * from seeds order by id
Describe the bug
UI shows No rows returned, when in reality, ad-hoc query failed.
It does not show error returned by failing ad-hoc query
To Reproduce
Run ad-hoc query with pipeline configured with very low rss.
Expected behavior
Ad-hoc query shows the error instead of saying No rows returned
Screenshots
Context (please complete the following information):
Additional context
you can checkout #6170 and use:
set workers to 1 and "datafusion_memory_mb": 60, run
select * from seeds order by id