Skip to content

Commit 66d8a2f

Browse files
committed
upd
1 parent 397684f commit 66d8a2f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/cubejs-schema-compiler/test/integration/postgres/pre-aggregations.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ describe('PreAggregations', () => {
601601
});
602602
`);
603603

604-
it('simple pre-aggregation 1', async () => {
604+
it('simple pre-aggregation', async () => {
605605
await compiler.compile();
606606

607607
const query = new PostgresQuery({ joinGraph, cubeEvaluator, compiler }, {
@@ -2315,7 +2315,7 @@ describe('PreAggregations', () => {
23152315
});
23162316
});
23172317

2318-
if (true) { // getEnv('nativeSqlPlanner') && getEnv('nativeSqlPlannerPreAggregations')) {
2318+
if (getEnv('nativeSqlPlanner') && getEnv('nativeSqlPlannerPreAggregations')) {
23192319
it('rollup lambda', async () => {
23202320
await compiler.compile();
23212321

packages/cubejs-schema-compiler/test/integration/postgres/sql-generation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ SELECT 1 AS revenue, cast('2024-01-01' AS timestamp) as time UNION ALL
862862
})
863863
`);
864864

865-
it('simple join 1', async () => {
865+
it('simple join', async () => {
866866
await compiler.compile();
867867

868868
console.log(joinGraph.buildJoin(['visitor_checkins', 'visitors']));

0 commit comments

Comments
 (0)