morningman opened a new issue #442: Create view failed
URL: https://github.com/apache/incubator-doris/issues/442
 
 
   CREATE VIEW udw.udw_storage_fact_view 
   (
   event_day, 
   table_type, 
   uri, 
   product,
   is_external_product,
   owner,
   cluster_name,
   path,
   logic_size,
   physical_size,
   row_count
   )
   AS
   SELECT 
   event_day, 
   table_type, 
   uri, 
   product,
   is_external_product,
   owner,
   cluster_name,
   path,
   logic_size,
   physical_size,
   row_count
   FROM udw.udw_storage_fact
   WHERE deal_date in
   (
   SELECT max(deal_date) from udw.udw_storage_fact
   )
   ;
   
   `SELECT max(deal_date)` is missing after analyzing the view

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to