コード例 #1
0
ファイル: optimizer.py プロジェクト: Python3pkg/Hydro
 def _geo_lookup_plan(self, source_id, params, conf):
     plan = PlanObject(params, source_id, conf)
     plan.data_source = 'vertica-dashboard'
     plan.template_file = 'geo_lookup.sql'
     return plan
コード例 #2
0
ファイル: optimizer.py プロジェクト: Convertro/Hydro
 def _geo_lookup_plan(self, source_id,  params, conf):
     plan = PlanObject(params, source_id, conf)
     plan.data_source = 'vertica-dashboard'
     plan.template_file = 'geo_lookup.sql'
     return plan
コード例 #3
0
ファイル: optimizer.py プロジェクト: Python3pkg/Hydro
 def _geo_widget_plan(self, source_id, params, conf):
     plan = PlanObject(params, source_id, conf)
     # here comes the logic around the params
     plan.data_source = 'vertica-dashboard'
     plan.template_file = 'geo_widget.sql'
     return plan
コード例 #4
0
ファイル: optimizer.py プロジェクト: Convertro/Hydro
 def _geo_widget_plan(self, source_id,  params, conf):
     plan = PlanObject(params, source_id, conf)
     # here comes the logic around the params
     plan.data_source = 'vertica-dashboard'
     plan.template_file = 'geo_widget.sql'
     return plan