I create a new Rascal Project, a new tq file and I try to execute a simple select query. I receive a message "Error: IO("Problem Parsing HTTP Reponse")". See also remark in bold at the end.
I pulled the new versions of all the images needed for the Polystore
Query
output in "Impulse Console": I don't know what that is. If you mean the docker terminal then:
select `p`.`Product.@id` as `p.Product.@id`, `p`.`Product.description` as `p.Product.description`, `p`.`Product.name` as `p.Product.name`, `p`.`Product.id` as `p.Product.id`
typhonql-server | from `Product` as `p`
typhonql-server | where true;
typhon-polystore-service | {"columnNames":["p.@id"],"values":[]}
typhon-polystore-service | [253]
typhon-polystore-service | update query executed successfully
relevant entry in the "Error Log": empty
Additional context
1) I tried this on a fresh Eclipse, fresh QL installation, fresh Rascal project.
2) The same query executes as expected using the REST API from a tool like Insomnia (which I use to test REST calls).
3) I can execute Insert statements from the Eclipse IDE with no problem.
After I do an insert then the select statement above returns another type of error. See the screenshot below:
4) I can do reset database and dumb schema from Eclipse IDE with no problem.
I had a similar issues due to connections not being closed which is now fixed. I don't understand how the HTTP error code relates the issue of not being able to query, so I'm closing this for now.
I create a new Rascal Project, a new tq file and I try to execute a simple select query. I receive a message "Error: IO("Problem Parsing HTTP Reponse")". See also remark in bold at the end.
I pulled the new versions of all the images needed for the Polystore Query
Model
ML: here DL: here
Expected behavior
Get back the following response:
Screenshots
IDE
If the bug happens inside the QL IDE:
Additional context
1) I tried this on a fresh Eclipse, fresh QL installation, fresh Rascal project. 2) The same query executes as expected using the REST API from a tool like Insomnia (which I use to test REST calls). 3) I can execute Insert statements from the Eclipse IDE with no problem.