Keyi Xie
Keyi Xie
 ```go package main import ( "context" "fmt" "github.com/huandu/go-tls" ) func main() { ctx, can := context.WithCancel(context.Background()) go func() { defer can() k, v := "k", "v" tls.Set(k, tls.MakeData(v)) g,...
Well, thanks for you help. How do you think about keep this issue opening, and maybe someone will be interested in doing this thing. Add a website or Add in...
This is a wonderful book. Thanks for your work again :+1:
I think we should have two settings: 1. Local host and remote host neither have internet. 2. Only remote host have not internet.( Because remote host is like IDC or...
Others may be tested too: ```SQL select json_type(cast(127 as json)); select json_type(cast(255 as json)); select json_type(cast(32767 as json)); select json_type(cast(65535 as json)); select json_type(cast(8388607 as json)); select json_type(cast(16777215 as json));...
```SQL insert into t(c,j) (select 'opaque_mysql_type_bit' ,cast(x'cafe' as json)); insert into t(c,j) (select 'opaque_mysql_type_blob' ,cast(b as json) from blobs); insert into t(c,j) (select 'opaque_mysql_type_longblob',cast(b as json) from longblobs); insert into...