Interesting though.
The CDS view works like normal view. It will join first and put filter afterwords, but the SQL optimiser will behave differently when we see PlanViz for different SQL. Better please follow the blog to see few example.
Under the HANA hood of an ABAP CDS View
you can use my code I use for performance analysis.
and see the table data.
DELETE FROM explain_plan_table WHERE statement_name = 'Chandan'; EXPLAIN PLAN SET STATEMENT_NAME = 'Chandan' FOR select top 100 * from MY_SCHEMA.ZTAB; select * from explain_plan_table WHERE statement_name = 'Chandan';