Subject: | Support for auto_placeholders in Fey::Literal::Function |
Given something like
->where(
$t_acct->column('passhash'),
'=',
Fey::Literal::Function->new(
SHA1 => Fey::Literal::Function->new(
CONCAT => $t_acct->column('salt'), $password
)
)
)
it would be nice if the $password didn't turn up as a literal value in
the rendered SQL, but became a placeholder instead.