O SQL Server alterará automaticamente o valor do bit para o valor varchar de true ou false. Então o seguinte funciona lá:
select * from table where booleancol = 'false'
Não tenho ideia se o postgre faz a mesma coisa.
select * from table where booleancol = 'false'