File tree Expand file tree Collapse file tree 7 files changed +10
-9
lines changed
athena-oracle/src/test/java/com/amazonaws/athena/connectors/oracle Expand file tree Collapse file tree 7 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 2929 security-events : write
3030 steps :
3131 - name : Checkout repository
32- uses : actions/checkout@v4
32+ uses : actions/checkout@v5
3333 - name : Initialize CodeQL
3434 uses : github/codeql-action/init@v3
3535 # Specify custom java build since the autobuild doesn't take advantage of multiple cores.
Original file line number Diff line number Diff line change 2020 java-version : ' 11'
2121
2222 - name : Checkout repository
23- uses : actions/checkout@v4
23+ uses : actions/checkout@v5
2424 with :
2525 fetch-depth : 0
2626
Original file line number Diff line number Diff line change 88 runs-on : aws-athena-query-federation_ubuntu-latest_16-core
99 steps :
1010 - name : Checkout
11- uses : actions/checkout@v4
11+ uses : actions/checkout@v5
1212
1313 - name : Set up JDK 11
1414 uses : actions/setup-java@v4
Original file line number Diff line number Diff line change 2121 if : needs.pre_job.outputs.should_skip != 'true'
2222 runs-on : aws-athena-query-federation_ubuntu-latest_16-core
2323 steps :
24- - uses : actions/checkout@v4
24+ - uses : actions/checkout@v5
2525 - name : Set up JDK 11
2626 uses : actions/setup-java@v4
2727 with :
Original file line number Diff line number Diff line change 1212
1313 steps :
1414 - name : Checkout Codebase
15- uses : actions/checkout@v4
15+ uses : actions/checkout@v5
1616
1717 - name : Set up Maven Central Repository
1818 uses : actions/setup-java@v4
Original file line number Diff line number Diff line change 2727 distribution : ' corretto'
2828 java-version : ' 11'
2929 - name : Checkout repository
30- uses : actions/checkout@v4
30+ uses : actions/checkout@v5
3131 with :
3232 fetch-depth : 0
3333 - name : Build jars
Original file line number Diff line number Diff line change @@ -306,12 +306,13 @@ public void testDoGetSplits_withQueryPassthrough()
306306 passthroughArgs .put ("arg1" , "val1" );
307307 passthroughArgs .put ("arg2" , "val2" );
308308
309- Constraints queryconstraints = new Constraints (
309+ Constraints constraints = new Constraints (
310310 Collections .emptyMap (),
311311 Collections .emptyList (),
312312 Collections .emptyList (),
313313 DEFAULT_NO_LIMIT ,
314- passthroughArgs
314+ passthroughArgs ,
315+ null
315316 );
316317
317318 Block partitions = Mockito .mock (Block .class );
@@ -323,7 +324,7 @@ public void testDoGetSplits_withQueryPassthrough()
323324 tableName ,
324325 partitions ,
325326 Collections .emptyList (),
326- queryconstraints ,
327+ constraints ,
327328 null
328329 );
329330
You can’t perform that action at this time.
0 commit comments