@@ -381,91 +381,78 @@ default void setBlob(int parameterIndex, InputStream inputStream, long length) t
381
381
@ Override
382
382
@ ExcludeFromJacocoGeneratedReport
383
383
default void setNClob (int parameterIndex , Reader reader , long length ) throws SQLException {
384
-
385
384
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
386
385
}
387
386
388
387
@ Override
389
388
@ ExcludeFromJacocoGeneratedReport
390
389
default void setSQLXML (int parameterIndex , SQLXML xmlObject ) throws SQLException {
391
-
392
390
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
393
391
}
394
392
395
393
@ Override
396
394
@ ExcludeFromJacocoGeneratedReport
397
395
default void setObject (int parameterIndex , Object x , int targetSqlType , int scaleOrLength ) throws SQLException {
398
-
399
396
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
400
397
}
401
398
402
399
@ Override
403
400
@ ExcludeFromJacocoGeneratedReport
404
401
default void setAsciiStream (int parameterIndex , InputStream x , long length ) throws SQLException {
405
-
406
402
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
407
403
}
408
404
409
405
@ Override
410
406
@ ExcludeFromJacocoGeneratedReport
411
407
default void setBinaryStream (int parameterIndex , InputStream x , long length ) throws SQLException {
412
-
413
408
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
414
409
}
415
410
416
411
@ Override
417
412
@ ExcludeFromJacocoGeneratedReport
418
413
default void setCharacterStream (int parameterIndex , Reader reader , long length ) throws SQLException {
419
-
420
414
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
421
415
}
422
416
423
417
@ Override
424
418
@ ExcludeFromJacocoGeneratedReport
425
419
default void setAsciiStream (int parameterIndex , InputStream x ) throws SQLException {
426
-
427
420
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
428
421
}
429
422
430
423
@ Override
431
424
@ ExcludeFromJacocoGeneratedReport
432
425
default void setBinaryStream (int parameterIndex , InputStream x ) throws SQLException {
433
-
434
426
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
435
427
}
436
428
437
429
@ Override
438
430
@ ExcludeFromJacocoGeneratedReport
439
431
default void setCharacterStream (int parameterIndex , Reader reader ) throws SQLException {
440
-
441
432
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
442
433
}
443
434
444
435
@ Override
445
436
@ ExcludeFromJacocoGeneratedReport
446
437
default void setNCharacterStream (int parameterIndex , Reader value ) throws SQLException {
447
-
448
438
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
449
439
}
450
440
451
441
@ Override
452
442
@ ExcludeFromJacocoGeneratedReport
453
443
default void setClob (int parameterIndex , Reader reader ) throws SQLException {
454
-
455
444
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
456
445
}
457
446
458
447
@ Override
459
448
@ ExcludeFromJacocoGeneratedReport
460
449
default void setBlob (int parameterIndex , InputStream inputStream ) throws SQLException {
461
-
462
450
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
463
451
}
464
452
465
453
@ Override
466
454
@ ExcludeFromJacocoGeneratedReport
467
455
default void setNClob (int parameterIndex , Reader reader ) throws SQLException {
468
-
469
456
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
470
457
}
471
458
@@ -490,14 +477,12 @@ default int getMaxFieldSize() throws SQLException {
490
477
@ Override
491
478
@ ExcludeFromJacocoGeneratedReport
492
479
default void setMaxFieldSize (int max ) throws SQLException {
493
-
494
480
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
495
481
}
496
482
497
483
@ Override
498
484
@ ExcludeFromJacocoGeneratedReport
499
485
default void setEscapeProcessing (boolean enable ) throws SQLException {
500
-
501
486
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
502
487
}
503
488
@@ -510,14 +495,12 @@ default int getQueryTimeout() throws SQLException {
510
495
@ Override
511
496
@ ExcludeFromJacocoGeneratedReport
512
497
default void setQueryTimeout (int seconds ) throws SQLException {
513
-
514
498
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
515
499
}
516
500
517
501
@ Override
518
502
@ ExcludeFromJacocoGeneratedReport
519
503
default void cancel () throws SQLException {
520
-
521
504
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
522
505
}
523
506
@@ -531,14 +514,12 @@ default SQLWarning getWarnings() throws SQLException {
531
514
@ Override
532
515
@ ExcludeFromJacocoGeneratedReport
533
516
default void clearWarnings () throws SQLException {
534
-
535
517
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
536
518
}
537
519
538
520
@ Override
539
521
@ ExcludeFromJacocoGeneratedReport
540
522
default void setCursorName (String name ) throws SQLException {
541
-
542
523
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
543
524
}
544
525
@@ -563,7 +544,6 @@ default boolean getMoreResults() throws SQLException {
563
544
@ Override
564
545
@ ExcludeFromJacocoGeneratedReport
565
546
default void setFetchDirection (int direction ) throws SQLException {
566
-
567
547
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
568
548
}
569
549
@@ -576,7 +556,6 @@ default int getFetchDirection() throws SQLException {
576
556
@ Override
577
557
@ ExcludeFromJacocoGeneratedReport
578
558
default void setFetchSize (int rows ) throws SQLException {
579
-
580
559
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
581
560
}
582
561
@@ -601,14 +580,12 @@ default int getResultSetType() throws SQLException {
601
580
@ Override
602
581
@ ExcludeFromJacocoGeneratedReport
603
582
default void addBatch (String sql ) throws SQLException {
604
-
605
583
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
606
584
}
607
585
608
586
@ Override
609
587
@ ExcludeFromJacocoGeneratedReport
610
588
default void clearBatch () throws SQLException {
611
-
612
589
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
613
590
}
614
591
@@ -681,7 +658,6 @@ default int getResultSetHoldability() throws SQLException {
681
658
@ Override
682
659
@ ExcludeFromJacocoGeneratedReport
683
660
default void setPoolable (boolean poolable ) throws SQLException {
684
-
685
661
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
686
662
}
687
663
@@ -694,7 +670,6 @@ default boolean isPoolable() throws SQLException {
694
670
@ Override
695
671
@ ExcludeFromJacocoGeneratedReport
696
672
default void closeOnCompletion () throws SQLException {
697
-
698
673
throw new SQLFeatureNotSupportedException ("Not implemented in the relational layer" , ErrorCode .UNSUPPORTED_OPERATION .getErrorCode ());
699
674
}
700
675
0 commit comments