At the moment, default model table storage type is hardcoded to ROW in creation.py line 82 and each model using a different store needs to be decorated. This patch introduces a new database configuration key DEFAULT_MODEL_STORE, which can be used to specify a database-wide default store for all models. Moreover, the default default model store (heh) is changed to COLUMN, as per this recommendation: http://scn.sap.com/community/hana-in-memory/blog/2013/12/29/6-golden-rules-for-new-sap-hana-developers
At the moment, default model table storage type is hardcoded to
ROW
increation.py
line 82 and each model using a different store needs to be decorated. This patch introduces a new database configuration keyDEFAULT_MODEL_STORE
, which can be used to specify a database-wide default store for all models. Moreover, the default default model store (heh) is changed toCOLUMN
, as per this recommendation: http://scn.sap.com/community/hana-in-memory/blog/2013/12/29/6-golden-rules-for-new-sap-hana-developers