DataBrewery / cubes

[NOT MAINTAINED] Light-weight Python OLAP framework for multi-dimensional data analysis
http://cubes.databrewery.org
Other
1.49k stars 313 forks source link

Having attributes in mappings that don't exist doesn't raise any error or warning. #471

Open KhaledTo opened 5 years ago

KhaledTo commented 5 years ago

When specifying a model, if I add some attributes that don't exist in my dataset I get no warnings or errors. To reproduce, you can use the sample model.json file in examples/hello_world folder:

            "mappings": {
                        "item.line_item": "line_item",
                        "item.subcategory": "subcategory",
                        "item.subcategory_label": "subcategory_label",
                        "item.category": "category",
                        "item.cpu_item": "cpu_item",
                        "item.category_label": "category_label",
                        "item.year_item": "year_item",
                        "item.doesntexist1": "itemdoesntexist1",
                        "item.doesntexist2": "itemdoesntexist2"
                         },