Add nil comparison to where tpl function
authorTatsushi Demachi <tdemachi@gmail.com>
Sat, 27 Jun 2015 17:15:42 +0000 (02:15 +0900)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 29 Jun 2015 17:50:45 +0000 (19:50 +0200)
commitdd732e84f43570d87dba49a1e42061f8bd4f6afa
treec9e8da37a5063ec5e7cabc2087f0bd32b63ac0a2
parent033a13e10e5ef42424db72ae45e01380b0d1e07c
Add nil comparison to where tpl function

`where` template function's internal condition check function always
returns `false` when a target value doesn't exist or it's nil value but
this behavior makes it difficult to filter values which doesn't have a
particular parameter.

To solve it, this adds nil value comparison to the function.
`where Values ".Param.key" nil` like clause can be used for the case
above.

Only "=", "==", "eq", "!=", "<>", "ne" operators are allowed to be used
with `nil`. If an other operator is passed with `nil`, the condition
check function returns `false` like before.

Fix #1232
tpl/template_funcs.go
tpl/template_funcs_test.go