Skip to content

Commit f28fe0a

Browse files
committed
in work
1 parent 57eb415 commit f28fe0a

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ describe('SQL Generation', () => {
382382
})
383383
`);
384384

385-
it('filter with operator OR 1', async () => {
385+
it('filter with operator OR', async () => {
386386
await compiler.compile();
387387

388388
const query = new PostgresQuery({ joinGraph, cubeEvaluator, compiler }, {

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ SELECT 1 AS revenue, cast('2024-01-01' AS timestamp) as time UNION ALL
906906
})
907907
`);
908908

909-
it('simple join 1', async () => {
909+
it('simple join', async () => {
910910
await compiler.compile();
911911

912912
console.log(joinGraph.buildJoin(['visitor_checkins', 'visitors']));
@@ -2866,8 +2866,6 @@ SELECT 1 AS revenue, cast('2024-01-01' AS timestamp) as time UNION ALL
28662866
console.log(query.buildSqlAndParams());
28672867

28682868
return dbRunner.testQuery(query.buildSqlAndParams()).then(res => {
2869-
console.log(res);
2870-
28712869
const expected = getEnv('nativeSqlPlanner') ?
28722870

28732871
[
@@ -3873,7 +3871,7 @@ SELECT 1 AS revenue, cast('2024-01-01' AS timestamp) as time UNION ALL
38733871
);
38743872

38753873
it(
3876-
'filter group 1',
3874+
'filter group',
38773875
() => runQueryTest({
38783876
measures: ['visitor_checkins.visitor_checkins_count'],
38793877
dimensions: [],

0 commit comments

Comments
 (0)