I have a Kafka event with nested fields, and when trying to create a materialized view with nested fields, I encountered an error related to a special function name. How can I handle this issue?
Jim
Asked on Mar 06, 2024
CREATE MATERIALIZED VIEW crm_view AS
SELECT
timestamp AS timestamp,
(crm.user).id AS user_id,
(crm.user).device_id AS device_id,
(crm.user).browser_type AS browser_type
FROM crm;
CREATE MATERIALIZED VIEW crm_view AS
SELECT
timestamp AS timestamp,
(user).id AS user_id,
(user).device_id AS device_id,
(user).browser_type AS browser_type
FROM crm;