@Tim Apps and @Joeri Smits
It will not work out of the box because HDP 2.4 Sandbox has an Atlas Bridge that's throwing the error on the post Hive hook. This happens for any query involving a "dummy" database (e.g., "select 1").
Via the Ambari config for Hive you should locate the hive.exec.post.hooks property. It will have a value like this:
org.apache.hadoop.hive.ql.hooks.ATSHook, org.apache.atlas.hive.hook.HiveHook
You should remove the second hook (the Atlas hook) so the property only reads:
org.apache.hadoop.hive.ql.hooks.ATSHook
Lastly, restart the Hive server. You should be able to verify the fix even without Zoomdata by executing in Hive (via Ambari or Beeline):
select count(1);
If the query is working, Zoomdata should have no problem connecting to HDP's Hive.
Hope this helps!