Closed bjornpost closed 9 years ago
As reported by @Jud in #107. This PR replaces IN () with IN (null) when calling $binder->magicBind('x = ?', array(array()));. I've also included a simple test case.
IN ()
IN (null)
$binder->magicBind('x = ?', array(array()));
:+1: LGTM
@bjornpost will merge after rebase.
As reported by @Jud in #107. This PR replaces
IN ()
withIN (null)
when calling$binder->magicBind('x = ?', array(array()));
. I've also included a simple test case.