Is it possible with Kohana v3 Query Builder (Kohana v3 being possibly the most poorly documented #$@$%...) to use the IS NOT NULL operator?
The where($column, $op, $value) method requires all three parameters and even if I specify
->where('col', 'IS NOT NULL', '')
it builds and invalid query eg.
SELECT * FROM table WHERE col IS NOT NULL '';
Is this a bug? Also -- despite some great advantages (like template controllers and a nice auth system) Kohana is horribly undocumented. Frustratingly so. Holy F**k. I'm wondering whether I should have gone with 2.xx but it's too late in the project to switch. arg.
$frustration++;