You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2020-10-21T09:16:38.363+0200 INFO main Bootstrap
↪ hive.translate-hive-views false false Experimental: Allow translation of Hive views into Presto views
presto:default> SELECT * FROM hive_view;
Expected:
HiveViewNotSupportedException
Observed:
a
---
(0 rows)
Note that hive.translate-hive-views is still used and controls e.g. how a Hive view is presented in information_schema.
presto:default> select * from information_schema.tables where table_schema = 'default';
table_catalog | table_schema | table_name | table_type
---------------+--------------+------------+------------
hive | default | a_table | BASE TABLE
hive | default | hive_view | BASE TABLE
The text was updated successfully, but these errors were encountered:
Expected:
Observed:
Note that
hive.translate-hive-views
is still used and controls e.g. how a Hive view is presented ininformation_schema
.The text was updated successfully, but these errors were encountered: