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
We are hitting an error due to a datafusion limitation on a where-in subquery filter clause used by metabase: apache/datafusion#5633
For this query:
SELECT nspname, typname FROM pg_type t JOIN pg_namespace n ON n.oid = t.typnamespace WHERE t.oid IN (SELECT DISTINCT enumtypid FROM pg_enum e);
Though the result should be empty. Next one requires columns and types to be able to join together so working on a glare_types builtin table and pg_type builtin view
The text was updated successfully, but these errors were encountered: