Previous implementation treated TRIM as an SQL built-in function, but in reality it is a special expression in SQL that differs from functions. The main problem is as that TRIM is not a name, it can't be wrapped with double quotes. Moreover, if we treat it as a function, we need some special hacks to modify is arguments. Now, these problems solved in a custom parsing logic.
Closes #1, #2
).cargo doc --open
).