You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@phoenix.apache.org by "jay wong (JIRA)" <ji...@apache.org> on 2014/07/08 11:54:04 UTC

[jira] [Created] (PHOENIX-1065) In order by case, I think nulls last will be default

jay wong created PHOENIX-1065:
---------------------------------

             Summary: In order by case, I think nulls last will be default
                 Key: PHOENIX-1065
                 URL: https://issues.apache.org/jira/browse/PHOENIX-1065
             Project: Phoenix
          Issue Type: New Feature
            Reporter: jay wong


1.  jdbc:phoenix:ip:/hbase-phoenix-l> select * from testorder;

|    PK1     |    COL1    |    COL2    |

| row1       | 2          | 3          |

| row2       | 3          | 4          |

| row3       | 4          | 5          |

| row4       | 5          | null       |

| row5       | 5          | null       |


2.jdbc:phoenix:ip:/hbase-phoenix-l> select * from testorder order by col2;

|    PK1     |    COL1    |    COL2    |

| row4       | 5          | null       |

| row5       | 5          | null       |

| row1       | 2          | 3          |

| row2       | 3          | 4          |

| row3       | 4          | 5          |

3. jdbc:phoenix:ip:/hbase-phoenix-l> select * from testorder order by col2 desc;


|    PK1     |    COL1    |    COL2    |

| row4       | 5          | null       |

| row5       | 5          | null       |

| row3       | 4          | 5          |

| row2       | 3          | 4          |

| row1       | 2          | 3          |



I think it will be at last when the column is null as default 

As mysql or oracle DB is at last.

It is More in line with normal logic of thinking.



--
This message was sent by Atlassian JIRA
(v6.2#6252)