File tree 2 files changed +6
-12
lines changed
src/main/java/com/google/cloud/spanner
2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 597
597
<className >com/google/cloud/spanner/StructReader</className >
598
598
<method >java.util.List getIntervalList(java.lang.String)</method >
599
599
</difference >
600
- <difference >
601
- <differenceType >7013</differenceType >
602
- <className >com/google/cloud/spanner/AbstractStructReader</className >
603
- <method >com.google.cloud.spanner.Interval getIntervalInternal(int)</method >
604
- </difference >
605
- <difference >
606
- <differenceType >7013</differenceType >
607
- <className >com/google/cloud/spanner/AbstractStructReader</className >
608
- <method >java.util.List getIntervalListInternal(int)</method >
609
- </difference >
610
600
<difference >
611
601
<differenceType >7013</differenceType >
612
602
<className >com/google/cloud/spanner/Value</className >
Original file line number Diff line number Diff line change @@ -67,7 +67,9 @@ protected String getPgJsonbInternal(int columnIndex) {
67
67
68
68
protected abstract Date getDateInternal (int columnIndex );
69
69
70
- protected abstract Interval getIntervalInternal (int columnIndex );
70
+ protected Interval getIntervalInternal (int columnIndex ) {
71
+ throw new UnsupportedOperationException ("Not implemented" );
72
+ }
71
73
72
74
protected <T extends AbstractMessage > T getProtoMessageInternal (int columnIndex , T message ) {
73
75
throw new UnsupportedOperationException ("Not implemented" );
@@ -130,7 +132,9 @@ protected List<String> getPgJsonbListInternal(int columnIndex) {
130
132
131
133
protected abstract List <Date > getDateListInternal (int columnIndex );
132
134
133
- protected abstract List <Interval > getIntervalListInternal (int columnIndex );
135
+ protected List <Interval > getIntervalListInternal (int columnIndex ) {
136
+ throw new UnsupportedOperationException ("Not implemented" );
137
+ }
134
138
135
139
protected abstract List <Struct > getStructListInternal (int columnIndex );
136
140
You can’t perform that action at this time.
0 commit comments