Kentaro Hayashi
null+****@clear*****
Thu Apr 20 18:10:38 JST 2017
Kentaro Hayashi 2017-04-20 18:10:38 +0900 (Thu, 20 Apr 2017) New Revision: 0ac9c62998ecbe62603f6ac9373245e33b9540a5 https://github.com/groonga/groonga/commit/0ac9c62998ecbe62603f6ac9373245e33b9540a5 Merged 77f58a6: Merge pull request #673 from kenhys/test-no-hit-dynamic-columns-with-drilldowns-label-filter Message: test: add no hit dynamic columns with drilldowns[LABEL].filter without error This test case checks whether drilldowns[LABEL].filter with empty records of dynamic columns (price_with_tax) in initial stage doesn't cause an error. Added files: test/command/suite/sharding/logical_select/drilldowns/columns/stage/initial/no_hit/drilldowns/filter.expected test/command/suite/sharding/logical_select/drilldowns/columns/stage/initial/no_hit/drilldowns/filter.test Added: test/command/suite/sharding/logical_select/drilldowns/columns/stage/initial/no_hit/drilldowns/filter.expected (+98 -0) 100644 =================================================================== --- /dev/null +++ test/command/suite/sharding/logical_select/drilldowns/columns/stage/initial/no_hit/drilldowns/filter.expected 2017-04-20 18:10:38 +0900 (2755e5e) @@ -0,0 +1,98 @@ +plugin_register sharding +[[0,0.0,0.0],true] +table_create Items TABLE_HASH_KEY ShortText +[[0,0.0,0.0],true] +column_create Items price COLUMN_SCALAR UInt32 +[[0,0.0,0.0],true] +table_create Logs_20170315 TABLE_NO_KEY +[[0,0.0,0.0],true] +column_create Logs_20170315 timestamp COLUMN_SCALAR Time +[[0,0.0,0.0],true] +column_create Logs_20170315 items COLUMN_VECTOR Items +[[0,0.0,0.0],true] +table_create Logs_20170316 TABLE_NO_KEY +[[0,0.0,0.0],true] +column_create Logs_20170316 timestamp COLUMN_SCALAR Time +[[0,0.0,0.0],true] +column_create Logs_20170316 items COLUMN_VECTOR Items +[[0,0.0,0.0],true] +table_create Logs_20170317 TABLE_NO_KEY +[[0,0.0,0.0],true] +column_create Logs_20170317 timestamp COLUMN_SCALAR Time +[[0,0.0,0.0],true] +column_create Logs_20170317 items COLUMN_VECTOR Items +[[0,0.0,0.0],true] +load --table Items +[ +{"_key": "Book", "price": 1000}, +{"_key": "Note", "price": 1000}, +{"_key": "Box", "price": 500}, +{"_key": "Pen", "price": 500}, +{"_key": "Food", "price": 500}, +{"_key": "Drink", "price": 300} +] +[[0,0.0,0.0],6] +load --table Logs_20170315 +[ +{"timestamp": "2017/03/15 00:00:00", "items": ["Book", "Note", "Box", "Pen"]}, +{"timestamp": "2017/03/15 01:00:00", "items": ["Food", "Drink", "Pen"]} +] +[[0,0.0,0.0],2] +load --table Logs_20170316 +[ +{"timestamp": "2017/03/16 10:00:00", "items": ["Pen", "Note", "Food", "Drink"]}, +{"timestamp": "2017/03/16 11:00:00", "items": ["Note", "Box"]} +] +[[0,0.0,0.0],2] +load --table Logs_20170317 +[ +{"timestamp": "2017/03/17 20:00:00", "items": ["Food", "Book"]}, +{"timestamp": "2017/03/17 20:00:00", "items": ["Drink", "Note"]} +] +[[0,0.0,0.0],2] +logical_select Logs --shard_key timestamp --output_columns _id --limit 0 --min "2017/04/01 00:00:00" --drilldowns[item].keys items --drilldowns[item].sort_keys price --drilldowns[item].output_columns _key,_nsubrecs,price,price_with_tax --drilldowns[item].columns[price_with_tax].stage initial --drilldowns[item].columns[price_with_tax].type UInt32 --drilldowns[item].columns[price_with_tax].flags COLUMN_SCALAR --drilldowns[item].columns[price_with_tax].value 'price * 1.08' --drilldowns[item].filter "price_with_tax > 0" +[ + [ + 0, + 0.0, + 0.0 + ], + [ + [ + [ + 0 + ], + [ + [ + "_id", + "UInt32" + ] + ] + ], + { + "item": [ + [ + 0 + ], + [ + [ + "_key", + "ShortText" + ], + [ + "_nsubrecs", + "Int32" + ], + [ + "price", + "UInt32" + ], + [ + "price_with_tax", + "UInt32" + ] + ] + ] + } + ] +] Added: test/command/suite/sharding/logical_select/drilldowns/columns/stage/initial/no_hit/drilldowns/filter.test (+60 -0) 100644 =================================================================== --- /dev/null +++ test/command/suite/sharding/logical_select/drilldowns/columns/stage/initial/no_hit/drilldowns/filter.test 2017-04-20 18:10:38 +0900 (58c21b5) @@ -0,0 +1,60 @@ +#@on-error omit +plugin_register sharding +#@on-error default + +table_create Items TABLE_HASH_KEY ShortText +column_create Items price COLUMN_SCALAR UInt32 + +table_create Logs_20170315 TABLE_NO_KEY +column_create Logs_20170315 timestamp COLUMN_SCALAR Time +column_create Logs_20170315 items COLUMN_VECTOR Items + +table_create Logs_20170316 TABLE_NO_KEY +column_create Logs_20170316 timestamp COLUMN_SCALAR Time +column_create Logs_20170316 items COLUMN_VECTOR Items + +table_create Logs_20170317 TABLE_NO_KEY +column_create Logs_20170317 timestamp COLUMN_SCALAR Time +column_create Logs_20170317 items COLUMN_VECTOR Items + +load --table Items +[ +{"_key": "Book", "price": 1000}, +{"_key": "Note", "price": 1000}, +{"_key": "Box", "price": 500}, +{"_key": "Pen", "price": 500}, +{"_key": "Food", "price": 500}, +{"_key": "Drink", "price": 300} +] + +load --table Logs_20170315 +[ +{"timestamp": "2017/03/15 00:00:00", "items": ["Book", "Note", "Box", "Pen"]}, +{"timestamp": "2017/03/15 01:00:00", "items": ["Food", "Drink", "Pen"]} +] + +load --table Logs_20170316 +[ +{"timestamp": "2017/03/16 10:00:00", "items": ["Pen", "Note", "Food", "Drink"]}, +{"timestamp": "2017/03/16 11:00:00", "items": ["Note", "Box"]} +] + +load --table Logs_20170317 +[ +{"timestamp": "2017/03/17 20:00:00", "items": ["Food", "Book"]}, +{"timestamp": "2017/03/17 20:00:00", "items": ["Drink", "Note"]} +] + +logical_select Logs \ + --shard_key timestamp \ + --output_columns _id \ + --limit 0 \ + --min "2017/04/01 00:00:00" \ + --drilldowns[item].keys items \ + --drilldowns[item].sort_keys price \ + --drilldowns[item].output_columns _key,_nsubrecs,price,price_with_tax \ + --drilldowns[item].columns[price_with_tax].stage initial \ + --drilldowns[item].columns[price_with_tax].type UInt32 \ + --drilldowns[item].columns[price_with_tax].flags COLUMN_SCALAR \ + --drilldowns[item].columns[price_with_tax].value 'price * 1.08' \ + --drilldowns[item].filter "price_with_tax > 0" -------------- next part -------------- HTML����������������������������... 下载