I have the TPC-H benchmark installed. I can run this command in the browser and it works fine:
select * from h_customer;
But if I run it from the Linux CLI, it simply never returns.
If I modify it to be smaller, it will work in the CLI:
select * from h_customer limit 10;
That returns just fine. I can then continue:
select * from h_customer limit 100; -- This works.
select * from h_customer limit 1000; -- This hangs.
The History view shows that the server got the query with the 'limit 1000', and processed it correctly. It was run in a reasonable time and the history view shows the proper 1,000 rows.
I can reproduce this with other tables and queries. It seems to be a volume of data issue on the client side. But returning 1,000 rows should be trivial. And I would expect it to return much more.