tbl_name << "tx_query".as_symbol()
... should really be...
tbl_name << :tx_query
If you are calling
:as_symbol()
on a string, that should be a red flag to you that you are doing something wrong. You should really only call :as_symbol()
on a variable.
No comments:
Post a Comment