Uploaded image for project: 'Tajo (Retired)'
  1. Tajo (Retired)
  2. TAJO-904

ORDER BY Null first support

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Trivial
    • Resolution: Fixed
    • None
    • 0.9.0
    • None
    • None

    Description

      ORDER BY with a null column miss some data. I found RowStoreEncoder has a bug dealing with NULL values.
      "continue" statement should be add.

            Column col;
            for (int i = 0; i < schema.size(); i++) {
              if (tuple.isNull(i)) {
                nullFlags.set(i);
                continue;
              }
              col = schema.getColumn(i);
      

      Attachments

        Activity

          People

            hjkim Hyoungjun Kim
            hjkim Hyoungjun Kim
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: