You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Edward Yoon (JIRA)" <ji...@apache.org> on 2008/02/05 10:13:09 UTC

[jira] Assigned: (HBASE-39) Addition of start command for execute the *.hql query file

     [ https://issues.apache.org/jira/browse/HBASE-39?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Edward Yoon reassigned HBASE-39:
--------------------------------

    Assignee: Edward Yoon

> Addition of start command for execute the *.hql query file
> ----------------------------------------------------------
>
>                 Key: HBASE-39
>                 URL: https://issues.apache.org/jira/browse/HBASE-39
>             Project: Hadoop HBase
>          Issue Type: New Feature
>          Components: hql
>            Reporter: Edward Yoon
>            Assignee: Edward Yoon
>            Priority: Minor
>             Fix For: 0.1.0
>
>         Attachments: 2591.patch, 2591_v01.patch, 2591_v02.patch, 2591_v03.patch, 2591_v04.patch, 2591_v05.patch
>
>
> {code}
> $ cat queries.hql
> CREATE TABLE webtable (
>  contents in_memory max_versions=10 compression=block,
>  anchor max_length=256 bloomfilter=counting_bloomfilter
>  vector_size=1000000 num_hash=4);
> );
> INSERT INTO webtable (contents, anchor:Hadoop) 
> VALUES ('html content', 'http://hadoop.apache.org') 
> WHERE row='http://www.hadoop.co.kr';
> ...
> ----
> hql> start ./queries.hql;
> ...
> hql> desc webtable;
> ....
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.