This is an automated email from the ASF dual-hosted git repository.
wongoo pushed a change to branch 1.6
in repository https://gitbox.apache.org/repos/asf/dubbo-go-hessian2.git.
from 7370d4e Merge pull request #217 from apache/master
add 9b32032 [refer dubbo 2.7.6] attachment type from map[string]stiring
to map[string]interface{} (#218)
add 2d98319 java.sql.Time
add e9a300f java.sql.Time simple test
add a0458bd java.sql.Time java.sql.Date
add a9869e3 fix errors
add 8935be6 compare time with unix nano
add 9de5cb6 add comment and optimize
add ceba5b3 refactor code
add 68ebf21 add license
add b76a7ff optimize code
add d3e7ea2 Merge pull request #219 from zhangshen023/master
add 067bdf6 update readme
add 94c6718 add java_time
add 396b558 delete err code
add 539ecdc delete fun
add 97e42f6 add localdateatime add second, nano
add ef54e11 Merge pull request #221 from cyb-code/master
new a93b11c Merge pull request #222 from apache/master
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
README.md | 2 +
hessian.go | 4 +-
hessian_test.go | 15 ++-
java8_time.go | 7 +-
java8_time/{local_date.go => offset_date_time.go} | 15 +--
java8_time/{local_date.go => offset_time.go} | 15 +--
java8_time/{year.go => zone_off_set.go} | 14 +-
.../{local_date_time.go => zoned_date_time.go} | 15 ++-
java8_time_test.go | 6 +-
java_sql_time.go | 145 +++++++++++++++++++++
null_test.go => java_sql_time/date.go | 49 +++++--
.../month_day.go => java_sql_time/java_sql_time.go | 21 ++-
null_test.go => java_sql_time/time.go | 51 +++++---
java_sql_time_test.go | 102 +++++++++++++++
request.go | 17 +--
request_test.go | 8 +-
response.go | 23 ++--
response_test.go | 5 +-
test_hessian/src/main/java/test/Hessian.java | 23 +++-
test_hessian/src/main/java/test/TestJava8Time.java | 6 +-
.../test/{TestString.java => TestJavaSqlTime.java} | 30 +++--
21 files changed, 457 insertions(+), 116 deletions(-)
copy java8_time/{local_date.go => offset_date_time.go} (72%)
copy java8_time/{local_date.go => offset_time.go} (73%)
copy java8_time/{year.go => zone_off_set.go} (77%)
copy java8_time/{local_date_time.go => zoned_date_time.go} (70%)
create mode 100644 java_sql_time.go
copy null_test.go => java_sql_time/date.go (58%)
copy java8_time/month_day.go => java_sql_time/java_sql_time.go (73%)
copy null_test.go => java_sql_time/time.go (58%)
create mode 100644 java_sql_time_test.go
copy test_hessian/src/main/java/test/{TestString.java => TestJavaSqlTime.java}
(62%)