Results 8 comments of sunfuze

We use [Archery](https://archerydms.com/) as database manager, it append backslash when field is json. Example: So it is usable in this case to remove backslash when format json content.

Another case is: our log system use json as output format, if some log field is json string, the output of that field will be appended backslash before '"'.

``` db.update('table', { field1: 'abc', field2: 'efg' }, { where: { field1: 'a', id: 1 } })` ``` 原来上面这种情况,是不会更新 `field1`的。 --- ``` db.update('table', { id: 1, field1: 'abc' }) ```...

I hava the same problem , i want to set `CURLOPT_HTTPAUTH` : `CURLAUTH_GSSNEGOTIATE`. See: http://curl.haxx.se/libcurl/c/CURLOPT_HTTPAUTH.html

if you use`sqlmock.QueryMatcherEqual`, may be you should trim space around expect query ```golang const query = ` INSERT INTO "table_test" ("id","name") VALUES"` ``` to ```golang const query = `INSERT INTO...

Also need change [vmlinux.h](https://github.com/solo-io/bumblebee/blob/main/builder/vmlinux.h) to arm64 version or building raise "error: incomplete definition of type 'struct user_pt_regs'".

Is there any progress on this feature?

On 2012年11月05日 17:54, zhouzhenhao wrote: > 刚接触linux 在centos下启动run.sh时出错了 > 出错信息是: > -bash:./bin/run.sh:Permission denied > 不知道为什么 > > — > Reply to this email directly or view it on GitHub >...