Skip to content

Commit c6fbe32

Browse files
committed
add authors
1 parent f90d31b commit c6fbe32

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ Xiangyu Hu <xiangyu.hu at outlook.com>
108108
Xiaobing Jiang <s7v7nislands at gmail.com>
109109
Xiuming Chen <cc at cxm.cc>
110110
Xuehong Chan <chanxuehong at gmail.com>
111+
Zhang Xiang <angwerzx at 126.com>
111112
Zhenye Xie <xiezhenye at gmail.com>
112113
Zhixin Wen <john.wenzhixin at gmail.com>
113114
Ziheng Lyu <zihenglv at gmail.com>
@@ -126,6 +127,7 @@ InfoSum Ltd.
126127
Keybase Inc.
127128
Multiplay Ltd.
128129
Percona LLC
130+
PingCAP Inc.
129131
Pivotal Inc.
130132
Stripe Inc.
131133
Zendesk Inc.

driver_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ func init() {
6868
return defaultValue
6969
}
7070
user = env("MYSQL_TEST_USER", "root")
71-
pass = env("MYSQL_TEST_PASS", "")
71+
pass = env("MYSQL_TEST_PASS", "passwd")
7272
prot = env("MYSQL_TEST_PROT", "tcp")
7373
addr = env("MYSQL_TEST_ADDR", "localhost:3306")
74-
dbname = env("MYSQL_TEST_DBNAME", "gotest")
74+
dbname = env("MYSQL_TEST_DBNAME", "test")
7575
netAddr = fmt.Sprintf("%s(%s)", prot, addr)
7676
dsn = fmt.Sprintf("%s:%s@%s/%s?timeout=30s", user, pass, netAddr, dbname)
7777
c, err := net.Dial(prot, addr)

0 commit comments

Comments
 (0)