You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by Apache Wiki <wi...@apache.org> on 2008/08/29 03:38:48 UTC

[Hadoop Wiki] Update of "Hive/Roadmap" by ZhengShao

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.

The following page has been changed by ZhengShao:
http://wiki.apache.org/hadoop/Hive/Roadmap

------------------------------------------------------------------------------
  #pragma section-numbers 2
  = Roadmap/call to add more features =
  The following is the list of useful features that are on the Hive Roadmap:
-  * Put feature here
+  * Multiple Group-By Inserts
+ <code>
+ FROM src
+ SELECT src.adid, COUNT(src.userid), COUNT(DISTINCT src.userid) GROUP BY src.adid
+ SELECT src.pageid, COUNT(src.userid), COUNT(DISTINCT src.userid) GROUP BY src.pageid
+ </code>