File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed
packages/cubejs-schema-compiler/test/integration/postgres Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -200,8 +200,19 @@ cube(\`ProductCategories\`, {
200200});
201201
202202view(\`OrdersView\`, {
203- includes: [Orders],
204- excludes: [Orders.createdAt],
203+ cubes: [{
204+ join_path: Orders,
205+ includes: '*',
206+ excludes: ['createdAt']
207+ }, {
208+ join_path: Orders.Products,
209+ includes: '*',
210+ prefix: true
211+ }, {
212+ join_path: Orders.Products.ProductCategories,
213+ includes: '*',
214+ prefix: true
215+ }],
205216
206217 measures: {
207218 productCategoryCount: {
@@ -233,10 +244,6 @@ view(\`OrdersView\`, {
233244 }
234245});
235246
236- view(\`OrdersView2\`, {
237- includes: [Orders.count],
238- });
239-
240247view(\`OrdersView3\`, {
241248 cubes: [{
242249 join_path: Orders,
You can’t perform that action at this time.
0 commit comments