Comment interroger NOT NULL avec Doctrine?

J'ai le Test de la table:

Test:
id | name 
1  | aaa
2  | 
3  | ccc
4  | aaa
5  | 
6  | ddd

Je veux la suite où le nom n'est PAS NULLE:

aaa
ccc
aaa
ddd

Comment puis-je obtenir avec:

Doctrine_Core::getTable('Test')->findBy('name', NOTNULL??) <-doesnt working

et dans le modèle avec:

$this->createQuery('u')
     ->where('name = ?', NOTNULL ???) <- doesnt working
     ->execute();

source d'informationauteur Michael Fidy | 2011-09-05