提交 45e13e0b authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Revert "remove STORE_LOCAL_TIME code" and change constant to parameter

This partially reverts commit 18602ef4.
上级 8177350d
...@@ -114,9 +114,12 @@ public class Data { ...@@ -114,9 +114,12 @@ public class Data {
*/ */
private final DataHandler handler; private final DataHandler handler;
private Data(DataHandler handler, byte[] data) { private final boolean storeLocalTime;
private Data(DataHandler handler, byte[] data, boolean storeLocalTime) {
this.handler = handler; this.handler = handler;
this.data = data; this.data = data;
this.storeLocalTime = storeLocalTime;
} }
/** /**
...@@ -298,7 +301,7 @@ public class Data { ...@@ -298,7 +301,7 @@ public class Data {
* @return the buffer * @return the buffer
*/ */
public static Data create(DataHandler handler, int capacity) { public static Data create(DataHandler handler, int capacity) {
return new Data(handler, new byte[capacity]); return new Data(handler, new byte[capacity], false);
} }
/** /**
...@@ -310,7 +313,7 @@ public class Data { ...@@ -310,7 +313,7 @@ public class Data {
* @return the buffer * @return the buffer
*/ */
public static Data create(DataHandler handler, byte[] buff) { public static Data create(DataHandler handler, byte[] buff) {
return new Data(handler, buff); return new Data(handler, buff, false);
} }
/** /**
...@@ -484,20 +487,48 @@ public class Data { ...@@ -484,20 +487,48 @@ public class Data {
break; break;
} }
case Value.TIME: case Value.TIME:
writeByte((byte) type); if (storeLocalTime) {
writeVarLong(DateTimeUtils.getTimeLocalWithoutDst(v.getTime())); writeByte((byte) LOCAL_TIME);
ValueTime t = (ValueTime) v;
long nanos = t.getNanos();
long millis = nanos / 1_000_000;
nanos -= millis * 1_000_000;
writeVarLong(millis);
writeVarLong(nanos);
} else {
writeByte((byte) type);
writeVarLong(DateTimeUtils.getTimeLocalWithoutDst(v.getTime()));
}
break; break;
case Value.DATE: { case Value.DATE: {
writeByte((byte) type); if (storeLocalTime) {
long x = DateTimeUtils.getTimeLocalWithoutDst(v.getDate()); writeByte((byte) LOCAL_DATE);
writeVarLong(x / MILLIS_PER_MINUTE); long x = ((ValueDate) v).getDateValue();
writeVarLong(x);
} else {
writeByte((byte) type);
long x = DateTimeUtils.getTimeLocalWithoutDst(v.getDate());
writeVarLong(x / MILLIS_PER_MINUTE);
}
break; break;
} }
case Value.TIMESTAMP: { case Value.TIMESTAMP: {
Timestamp ts = v.getTimestamp(); if (storeLocalTime) {
writeByte((byte) type); writeByte((byte) LOCAL_TIMESTAMP);
writeVarLong(DateTimeUtils.getTimeLocalWithoutDst(ts)); ValueTimestamp ts = (ValueTimestamp) v;
writeVarInt(ts.getNanos() % 1_000_000); long dateValue = ts.getDateValue();
writeVarLong(dateValue);
long nanos = ts.getTimeNanos();
long millis = nanos / 1_000_000;
nanos -= millis * 1_000_000;
writeVarLong(millis);
writeVarLong(nanos);
} else {
Timestamp ts = v.getTimestamp();
writeByte((byte) type);
writeVarLong(DateTimeUtils.getTimeLocalWithoutDst(ts));
writeVarInt(ts.getNanos() % 1_000_000);
}
break; break;
} }
case Value.TIMESTAMP_TZ: { case Value.TIMESTAMP_TZ: {
...@@ -702,8 +733,8 @@ public class Data { ...@@ -702,8 +733,8 @@ public class Data {
} }
DbException.throwInternalError("type=" + v.getType()); DbException.throwInternalError("type=" + v.getType());
} }
assert pos - start == getValueLen(v, handler) assert pos - start == getValueLen(v)
: "value size error: got " + (pos - start) + " expected " + getValueLen(v, handler); : "value size error: got " + (pos - start) + " expected " + getValueLen(v);
} }
/** /**
...@@ -925,7 +956,7 @@ public class Data { ...@@ -925,7 +956,7 @@ public class Data {
* @return the number of bytes required to store this value * @return the number of bytes required to store this value
*/ */
public int getValueLen(Value v) { public int getValueLen(Value v) {
return getValueLen(v, handler); return getValueLen(v, handler, storeLocalTime);
} }
/** /**
...@@ -933,9 +964,12 @@ public class Data { ...@@ -933,9 +964,12 @@ public class Data {
* *
* @param v the value * @param v the value
* @param handler the data handler for lobs * @param handler the data handler for lobs
* @param storeLocalTime
* calculate size of DATE, TIME, and TIMESTAMP values with local
* time storage format
* @return the number of bytes required to store this value * @return the number of bytes required to store this value
*/ */
public static int getValueLen(Value v, DataHandler handler) { public static int getValueLen(Value v, DataHandler handler, boolean storeLocalTime) {
if (v == ValueNull.INSTANCE) { if (v == ValueNull.INSTANCE) {
return 1; return 1;
} }
...@@ -1020,12 +1054,31 @@ public class Data { ...@@ -1020,12 +1054,31 @@ public class Data {
return 1 + getVarIntLen(scale) + getVarIntLen(bytes.length) + bytes.length; return 1 + getVarIntLen(scale) + getVarIntLen(bytes.length) + bytes.length;
} }
case Value.TIME: case Value.TIME:
if (storeLocalTime) {
long nanos = ((ValueTime) v).getNanos();
long millis = nanos / 1_000_000;
nanos -= millis * 1_000_000;
return 1 + getVarLongLen(millis) + getVarLongLen(nanos);
}
return 1 + getVarLongLen(DateTimeUtils.getTimeLocalWithoutDst(v.getTime())); return 1 + getVarLongLen(DateTimeUtils.getTimeLocalWithoutDst(v.getTime()));
case Value.DATE: { case Value.DATE: {
if (storeLocalTime) {
long dateValue = ((ValueDate) v).getDateValue();
return 1 + getVarLongLen(dateValue);
}
long x = DateTimeUtils.getTimeLocalWithoutDst(v.getDate()); long x = DateTimeUtils.getTimeLocalWithoutDst(v.getDate());
return 1 + getVarLongLen(x / MILLIS_PER_MINUTE); return 1 + getVarLongLen(x / MILLIS_PER_MINUTE);
} }
case Value.TIMESTAMP: { case Value.TIMESTAMP: {
if (storeLocalTime) {
ValueTimestamp ts = (ValueTimestamp) v;
long dateValue = ts.getDateValue();
long nanos = ts.getTimeNanos();
long millis = nanos / 1_000_000;
nanos -= millis * 1_000_000;
return 1 + getVarLongLen(dateValue) + getVarLongLen(millis) +
getVarLongLen(nanos);
}
Timestamp ts = v.getTimestamp(); Timestamp ts = v.getTimestamp();
return 1 + getVarLongLen(DateTimeUtils.getTimeLocalWithoutDst(ts)) + return 1 + getVarLongLen(DateTimeUtils.getTimeLocalWithoutDst(ts)) +
getVarIntLen(ts.getNanos() % 1_000_000); getVarIntLen(ts.getNanos() % 1_000_000);
...@@ -1096,7 +1149,7 @@ public class Data { ...@@ -1096,7 +1149,7 @@ public class Data {
Value[] list = ((ValueCollectionBase) v).getList(); Value[] list = ((ValueCollectionBase) v).getList();
int len = 1 + getVarIntLen(list.length); int len = 1 + getVarIntLen(list.length);
for (Value x : list) { for (Value x : list) {
len += getValueLen(x, handler); len += getValueLen(x, handler, storeLocalTime);
} }
return len; return len;
} }
...@@ -1118,7 +1171,7 @@ public class Data { ...@@ -1118,7 +1171,7 @@ public class Data {
Value[] row = result.currentRow(); Value[] row = result.currentRow();
for (int i = 0; i < columnCount; i++) { for (int i = 0; i < columnCount; i++) {
Value val = row[i]; Value val = row[i];
len += getValueLen(val, handler); len += getValueLen(val, handler, storeLocalTime);
} }
} }
len++; len++;
...@@ -1360,7 +1413,7 @@ public class Data { ...@@ -1360,7 +1413,7 @@ public class Data {
public static void copyString(Reader source, OutputStream target) public static void copyString(Reader source, OutputStream target)
throws IOException { throws IOException {
char[] buff = new char[Constants.IO_BUFFER_SIZE]; char[] buff = new char[Constants.IO_BUFFER_SIZE];
Data d = new Data(null, new byte[3 * Constants.IO_BUFFER_SIZE]); Data d = new Data(null, new byte[3 * Constants.IO_BUFFER_SIZE], false);
while (true) { while (true) {
int l = source.read(buff); int l = source.read(buff);
if (l < 0) { if (l < 0) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论