File tree Expand file tree Collapse file tree
java-bigquery-jdbc/src/test/java/com/google/cloud/bigquery/jdbc Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1027,7 +1027,8 @@ public void testFindMatchingBigQueryObjects_Routines_ListWithPattern() throws Ex
10271027 (rt ) -> rt .getRoutineId ().getRoutine (),
10281028 pattern ,
10291029 regex ,
1030- dbMetadata .LOG );
1030+ dbMetadata .LOG ,
1031+ false );
10311032
10321033 verify (bigqueryClient , times (1 ))
10331034 .listRoutines (eq (datasetId ), any (BigQuery .RoutineListOption [].class ));
@@ -1069,7 +1070,8 @@ public void testFindMatchingBigQueryObjects_Routines_ListNoPattern() throws Exce
10691070 (rt ) -> rt .getRoutineId ().getRoutine (),
10701071 pattern ,
10711072 regex ,
1072- dbMetadata .LOG );
1073+ dbMetadata .LOG ,
1074+ false );
10731075
10741076 verify (bigqueryClient , times (1 ))
10751077 .listRoutines (eq (datasetId ), any (BigQuery .RoutineListOption [].class ));
@@ -1104,7 +1106,8 @@ public void testFindMatchingBigQueryObjects_Routines_GetSpecific() throws Except
11041106 (rt ) -> rt .getRoutineId ().getRoutine (),
11051107 procNameExact ,
11061108 regex ,
1107- dbMetadata .LOG );
1109+ dbMetadata .LOG ,
1110+ false );
11081111
11091112 verify (bigqueryClient , times (1 )).getRoutine (eq (routineId ));
11101113 verify (bigqueryClient , never ())
You can’t perform that action at this time.
0 commit comments