Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/14132
  
    The current grammar is unable to support multiple hints. For example, 
    ```SQL
    SELECT /*+ LEADING(e2 e1) USE_NL(e1) INDEX(e1 emp_emp_id_pk) 
               USE_MERGE(j) FULL(j) */
        e1.first_name, e1.last_name, j.job_id, sum(e2.salary) total_sal
      FROM employees e1, employees e2, job_history j
      WHERE e1.employee_id = e2.manager_id
        AND e1.employee_id = j.employee_id
        AND e1.hire_date = j.start_date
      GROUP BY e1.first_name, e1.last_name, j.job_id
      ORDER BY total_sal;
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

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

Reply via email to