You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2019/09/25 04:27:40 UTC

[GitHub] [incubator-doris] wubiaoi opened a new issue #1865: Support specifying inverted index columns when creating table for segment V2

wubiaoi opened a new issue #1865: Support specifying inverted index columns when creating table for segment V2
URL: https://github.com/apache/incubator-doris/issues/1865
 
 
   like bloom filter:
   ```
   CREATE TABLE example_db.table_hash
           (
           k1 TINYINT,
           k2 DECIMAL(10, 2) DEFAULT "10.5",
           v1 CHAR(10) REPLACE,
           v2 INT SUM
           )
           ENGINE=olap
           AGGREGATE KEY(k1, k2)
           DISTRIBUTED BY HASH(k1) BUCKETS 32
           PROPERTIES 
           (
               "storage_type"="column",
               "inverted_index_columns" = "k1,k2"
           );
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org