Skip to content

Commit 97e9817

Browse files
committed
upd
1 parent 532962c commit 97e9817

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
@@ -577,7 +577,7 @@ describe('PreAggregations', () => {
577577
});
578578
`);
579579

580-
it('simple pre-aggregation 1', async () => {
580+
it('simple pre-aggregation', async () => {
581581
await compiler.compile();
582582

583583
const query = new PostgresQuery({ joinGraph, cubeEvaluator, compiler }, {
@@ -2194,7 +2194,7 @@ describe('PreAggregations', () => {
21942194
});
21952195
});
21962196

2197-
if (true) { // getEnv('nativeSqlPlanner') && getEnv('nativeSqlPlannerPreAggregations')) {
2197+
if (getEnv('nativeSqlPlanner') && getEnv('nativeSqlPlannerPreAggregations')) {
21982198
it('rollup lambda', async () => {
21992199
await compiler.compile();
22002200

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)