File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
glint/src/test/java/co/clflushopt/glint/query/compiler Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public class QueryCompilerTest {
15
15
@ Test
16
16
public void canCompileInlinedParquetScan () throws Exception {
17
17
Assume .assumeTrue ("Skipping test due to missing data" ,
18
- System .getenv ("DISABLE_COMPILER_TESTS" ) ! = null );
18
+ System .getenv ("DISABLE_COMPILER_TESTS" ) = = null );
19
19
20
20
Path path = Path .of ("../datasets/yellow_tripdata_2019-01.parquet" );
21
21
String filename = path .toAbsolutePath ().toString ();
@@ -27,7 +27,7 @@ public void canCompileInlinedParquetScan() throws Exception {
27
27
@ Test
28
28
public void canCompileScanPlan () throws Exception {
29
29
Assume .assumeTrue ("Skipping test due to missing data" ,
30
- System .getenv ("DISABLE_COMPILER_TESTS" ) ! = null );
30
+ System .getenv ("DISABLE_COMPILER_TESTS" ) = = null );
31
31
try {
32
32
Path path = Path .of ("../datasets/yellow_tripdata_2019-01.parquet" );
33
33
String filename = path .toAbsolutePath ().toString ();
You can’t perform that action at this time.
0 commit comments