Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
olapy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
olapy
Commits
be5fedf0
Commit
be5fedf0
authored
Jun 08, 2017
by
mouadh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forgotten engine name
parent
d9c36831
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
olapy/core/mdx/executor/execute_config_file.py
olapy/core/mdx/executor/execute_config_file.py
+3
-3
No files found.
olapy/core/mdx/executor/execute_config_file.py
View file @
be5fedf0
...
@@ -20,7 +20,7 @@ def _load_table_config_file(executer_instance, cube_obj):
...
@@ -20,7 +20,7 @@ def _load_table_config_file(executer_instance, cube_obj):
for
table
in
cube_obj
.
dimensions
:
for
table
in
cube_obj
.
dimensions
:
value
=
psql
.
read_sql_query
(
"SELECT * FROM {0}"
.
format
(
table
.
name
),
value
=
psql
.
read_sql_query
(
"SELECT * FROM {0}"
.
format
(
table
.
name
),
db
.
connection
)
db
.
engine
)
tables
[
table
.
name
]
=
value
[[
tables
[
table
.
name
]
=
value
[[
col
for
col
in
value
.
columns
if
col
.
lower
()[
-
3
:]
!=
'_id'
col
for
col
in
value
.
columns
if
col
.
lower
()[
-
3
:]
!=
'_id'
...
@@ -48,7 +48,7 @@ def _construct_star_schema_config_file(executer_instance, cubes_obj):
...
@@ -48,7 +48,7 @@ def _construct_star_schema_config_file(executer_instance, cubes_obj):
db
=
MyDB
(
db
=
executer_instance
.
cube
)
db
=
MyDB
(
db
=
executer_instance
.
cube
)
# load facts table
# load facts table
fusion
=
psql
.
read_sql_query
(
fusion
=
psql
.
read_sql_query
(
"SELECT * FROM {0}"
.
format
(
executer_instance
.
facts
),
db
.
connection
)
"SELECT * FROM {0}"
.
format
(
executer_instance
.
facts
),
db
.
engine
)
for
fact_key
,
dimension_and_key
in
cubes_obj
.
facts
[
0
].
keys
.
items
():
for
fact_key
,
dimension_and_key
in
cubes_obj
.
facts
[
0
].
keys
.
items
():
df
=
psql
.
read_sql_query
(
df
=
psql
.
read_sql_query
(
...
@@ -130,7 +130,7 @@ def _construct_web_star_schema_config_file(executer_instance, cubes_obj):
...
@@ -130,7 +130,7 @@ def _construct_web_star_schema_config_file(executer_instance, cubes_obj):
else
:
else
:
df
=
psql
.
read_sql_query
(
df
=
psql
.
read_sql_query
(
"SELECT * FROM {0}"
.
format
(
dimension_and_key
.
split
(
'.'
)[
0
]),
"SELECT * FROM {0}"
.
format
(
dimension_and_key
.
split
(
'.'
)[
0
]),
db
.
connection
)
db
.
engine
)
# TODO check merge (how)
# TODO check merge (how)
fusion
=
fusion
.
merge
(
fusion
=
fusion
.
merge
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment