File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 4
4
import java .nio .ByteBuffer ;
5
5
import java .nio .ByteOrder ;
6
6
import java .util .List ;
7
-
8
7
import com .xxdb .io .ExtendedDataInput ;
9
8
import com .xxdb .io .ExtendedDataOutput ;
9
+ import com .fasterxml .jackson .annotation .JsonIgnore ;
10
10
11
11
/**
12
12
*
@@ -98,4 +98,10 @@ protected void writeVectorToOutputStream(ExtendedDataOutput out) throws IOExcept
98
98
for (short value : values )
99
99
out .writeShort (value );
100
100
}
101
+
102
+ @ JsonIgnore
103
+ @ Override
104
+ public int getScale () {
105
+ return super .getScale ();
106
+ }
101
107
}
Original file line number Diff line number Diff line change @@ -109,4 +109,10 @@ protected void writeVectorToOutputStream(ExtendedDataOutput out) throws IOExcept
109
109
for (String value : values )
110
110
out .writeString (value );
111
111
}
112
+
113
+ @ JsonIgnore
114
+ @ Override
115
+ public int getScale () {
116
+ return super .getScale ();
117
+ }
112
118
}
You can’t perform that action at this time.
0 commit comments