wushifeng

Results 3 issues of wushifeng

Setting up libexpat1:amd64 (2.1.0-7ubuntu0.16.04.2) ... ****Setting up python3.5-minimal (3.5.2-2ubuntu0~16.04.1) ... Fatal Python error: getrandom() failed** Aborted (core dumped)** dpkg: error processing package python3.5-minimal (--configure): subprocess installed post-installation script returned error...

版本:  0.7.7 **被测试类** public class MockDemo { public String callCommonFunc() { return commonFunc(); } public String commonFunc(){ return MockDemo.class.getSimpleName(); } } **测试类** @EnablePrivateAccess class MockDemoTest { @MockDiagnose(LogLevel.VERBOSE) public static class...

https://eco.dameng.com/community/article/765cc5688e65be1a5be6bb2fdc0410b8 使用go语言遇到读取text类型报错的问题。 报错信息: sql: Scan error on column index 9, name “resource_ids”: unsupported Scan, storing driver.Value type *dm.DmClob into type *string Golang 在表字段类型为TEXT时,解析为string类型失败; go语言是grom框架 比较MySQL和DM8中jdbc返回类型,mysql的做法是转成[]uint8,达梦里面是转成DmClob,所以导致报错,最新的处理方式是增加一个配置项,兼容MySQL这种用法。 1、连接串的地方增加localhost:5236?compatibleMode=mysql 2、使用最新的go驱动包。 按照官网的说法,获取这个新的包,仍不对呢