### Description: - When using a mix of JSON and relational operators, there is a priority error in the parsing results. - The new sql lost some blank spaces. ### SQL Example: - Original SQL: ```sql select * from t where js #>> '{a,b,1}' <> 'bar' ``` - Error 1: In the AST, the filter likes this: ```js #>> ('{a,b,1}' <> 'bar')``` but what we need is: ```(js #>> '{a,b,1}') <> 'bar'``` - Error 2: JSQLParser generates the new sql: ```sql SELECT * FROM t WHERE js#>>'{a,b,1}' <> 'bar' ``` but what we need is: ```SELECT * FROM t WHERE js #>> '{a,b,1}' <> 'bar'``` JSQLParser lost the blank spaces. ### Software Information: - JSqlParser version: **5.1** - Database: **PostgreSQL**