A data engineering team manages a Databricks environment where access is controlled via group-based Access Control Lists (ACLs). A table named `user_lifetimevalue` contains columns `email` (STRING), `age` (INT), and `lifetimevalue` (INT). A view is defined as follows: ```sql CREATE VIEW userltv_without_minors AS SELECT email, age, lifetimevalue FROM user_lifetimevalue WHERE CASE WHEN is_member("auditing") THEN true ELSE age >= 18 END; ``` An analyst who is **not** a member of the "auditing" group executes the following query: ```sql SELECT * FROM userltv_without_minors; ``` Based on the view definition and the analyst's group membership, which statement best describes the results returned? | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz