Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Server-Side not null on binary

    The NotNullCriterion seems to not be working for binary fields.

    Code:
    DSRequest fotoRequest = new DSRequest("fotos", DataSource.OP_FETCH);
            NotNullCriterion c = new NotNullCriterion("f_foto");
            fotoRequest.setAdvancedCriteria(new AdvancedCriteria(c));
    doesn't work, since the not null criterion is ignored and being replaced by '1' = '1'.
    Code:
    <field name="f_foto" type="imageFile" maxFileSize="10485760" />
     <field name="f_foto_filename" type="text">
    If I replace "f_foto" with "f_foto_filename", then everything works as expected.

    Using 6.0-p20160519 power.

    #2
    Isomorphic? have you been able to reproduce the issue ?

    Comment


      #3
      This is fixed now and will be available for download in nightly builds since June 4 (today).

      Comment

      Working...
      X