@@ -40,7 +40,7 @@ public function testGroupBy(): void
4040
4141 public function testHavingBy (): void
4242 {
43- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
43+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
4444
4545 if ($ isANSISQL ) {
4646 $ result = $ this ->db ->table ('job ' )
@@ -63,7 +63,7 @@ public function testHavingBy(): void
6363
6464 public function testOrHavingBy (): void
6565 {
66- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
66+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
6767
6868 if ($ isANSISQL ) {
6969 $ result = $ this ->db ->table ('user ' )
@@ -134,7 +134,7 @@ public function testHavingNotIn(): void
134134
135135 public function testOrHavingNotIn (): void
136136 {
137- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
137+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
138138
139139 if ($ isANSISQL ) {
140140 $ result = $ this ->db ->table ('job ' )
@@ -207,7 +207,7 @@ public function testOrHavingLike(): void
207207
208208 public function testOrNotHavingLike (): void
209209 {
210- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
210+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
211211
212212 if ($ isANSISQL ) {
213213 $ result = $ this ->db ->table ('job ' )
@@ -237,7 +237,7 @@ public function testOrNotHavingLike(): void
237237
238238 public function testAndHavingGroupStart (): void
239239 {
240- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
240+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
241241
242242 if ($ isANSISQL ) {
243243 $ result = $ this ->db ->table ('job ' )
@@ -271,7 +271,7 @@ public function testAndHavingGroupStart(): void
271271
272272 public function testOrHavingGroupStart (): void
273273 {
274- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
274+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
275275
276276 if ($ isANSISQL ) {
277277 $ result = $ this ->db ->table ('job ' )
@@ -306,7 +306,7 @@ public function testOrHavingGroupStart(): void
306306
307307 public function testNotHavingGroupStart (): void
308308 {
309- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
309+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
310310
311311 if ($ isANSISQL ) {
312312 $ result = $ this ->db ->table ('job ' )
@@ -340,7 +340,7 @@ public function testNotHavingGroupStart(): void
340340
341341 public function testOrNotHavingGroupStart (): void
342342 {
343- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
343+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
344344
345345 if ($ isANSISQL ) {
346346 $ result = $ this ->db ->table ('job ' )
0 commit comments