14 | | 2a. Update the `as_native` function to wrap the keys in parenthesis, effectively resolving the ambiguity. (This does raise yet another question, a question within a question: should we go ahead and wrap the keys in parenthesis on ALL backends? I think Oracle doesn't necessary require that for example.) |
15 | | 2b. Update the Cast function to always wrap values in parenthesis in all contexts. This seems like overkill. |
16 | | 2c. Change postgres from using the double-colon operator to the CAST(x AS type) syntax. This also seems like overkill, and results in sql being generated that is less postgres-y, if that makes sense. |
| 14 | |
| 15 | Options for minor issue 2: |
| 16 | |
| 17 | a. Update the `as_native` function to wrap the keys in parenthesis, effectively resolving the ambiguity. (This does raise yet another question, a question within a question: should we go ahead and wrap the keys in parenthesis on ALL backends? I think Oracle doesn't necessary require that for example.) |
| 18 | b. Update the Cast function to always wrap values in parenthesis in all contexts. This seems like overkill. |
| 19 | c. Change postgres from using the double-colon operator to the CAST(x AS type) syntax. This also seems like overkill, and results in sql being generated that is less postgres-y, if that makes sense. |