-
Notifications
You must be signed in to change notification settings - Fork 1.9k
feat(tesseract): Switch dimensions and case measures #9951
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #9951 +/- ##
=======================================
Coverage 84.62% 84.63%
=======================================
Files 253 253
Lines 90049 90049
=======================================
+ Hits 76204 76212 +8
+ Misses 13845 13837 -8
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
731c1d4
to
b5572bd
Compare
packages/cubejs-schema-compiler/src/compiler/transpilers/CubePropContextTranspiler.ts
Outdated
Show resolved
Hide resolved
@@ -877,7 +911,7 @@ const viewSchema = inherit(baseSchema, { | |||
meta: Joi.any(), | |||
}) | |||
])) | |||
]).required(), | |||
]), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure that having empty
cubes (I mean without any includes) in view is ok?
packages/cubejs-schema-compiler/test/integration/postgres/calc-groups.test.ts
Outdated
Show resolved
Hide resolved
console.log(JSON.stringify(res)); | ||
|
||
expect(res).toEqual( | ||
expectedResult | ||
); | ||
return sqlAndParams; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How're you using it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To check final sql like expect(sqlAndParams[0]).not.toMatch(/CROSS.+JOIN/);
rust/cubesqlplanner/cubesqlplanner/src/physical_plan_builder/processors/full_key_aggregate.rs
Outdated
Show resolved
Hide resolved
rust/cubesqlplanner/cubesqlplanner/src/physical_plan_builder/processors/keys_sub_query.rs
Outdated
Show resolved
Hide resolved
bf21e66
to
9f7b54e
Compare
Check List