-
Notifications
You must be signed in to change notification settings - Fork 78
/
mysql_funcs.go
573 lines (506 loc) · 17.9 KB
/
mysql_funcs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
package main
import (
"dannytools/ehand"
"dannytools/logging"
"database/sql"
"encoding/json"
"strings"
"fmt"
_ "github.com/go-sql-driver/mysql"
"github.com/siddontang/go-mysql/mysql"
"github.com/toolkits/file"
sliceKits "github.com/toolkits/slice"
)
const (
//PRIMARY_KEY_LABLE = "primary"
//UNIQUE_KEY_LABLE = "unique"
KEY_BINLOG_POS_SEP = "/"
KEY_DB_TABLE_SEP = "."
KEY_NONE_BINLOG = "_"
/*
KEY_DDL_BINLOG = "binlog"
KEY_DDL_SPOS = "startpos"
KEY_DDL_EPOS = "stoppos"
*/
)
type DdlPosInfo struct {
Binlog string `json:"binlog"`
StartPos uint32 `json:"start_position"`
StopPos uint32 `json:"stop_position"`
DdlSql string `json:"ddl_sql"`
}
//type FieldInfo map[string]string //{"name":"col1", "type":"int"}
type FieldInfo struct {
FieldName string `json:"column_name"`
FieldType string `json:"column_type"`
}
type KeyInfo []string //{colname1, colname2}
type TblInfoJson struct {
Database string `json:"database"`
Table string `json:"table"`
Columns []FieldInfo `json:"columns"`
PrimaryKey KeyInfo `json:"primary_key"`
UniqueKeys []KeyInfo `json:"unique_keys"`
DdlInfo DdlPosInfo `json:"ddl_info"`
}
type TablesColumnsInfo struct {
//lock *sync.RWMutex
tableInfos map[string]map[string]*TblInfoJson //{db.tb:{binlog/startpos/stoppos:TblInfoJson}}
}
var (
primaryUniqueKeysSql string = `
select k.CONSTRAINT_NAME, k.COLUMN_NAME, c.CONSTRAINT_TYPE
from information_schema.TABLE_CONSTRAINTS as c inner join information_schema.KEY_COLUMN_USAGE as k on
c.CONSTRAINT_NAME = k.CONSTRAINT_NAME and c.table_schema = k.table_schema and c.table_name=k.table_name
where c.CONSTRAINT_TYPE in ('PRIMARY KEY', 'UNIQUE') and c.table_schema=? and c.table_name=?
order by k.CONSTRAINT_NAME asc, k.ORDINAL_POSITION asc
`
primaryUniqueKeysSqlBatch string = `
select k.table_schema, k.table_name, k.CONSTRAINT_NAME, k.COLUMN_NAME, c.CONSTRAINT_TYPE, k.ORDINAL_POSITION
from information_schema.TABLE_CONSTRAINTS as c inner join information_schema.KEY_COLUMN_USAGE as k on
c.CONSTRAINT_NAME = k.CONSTRAINT_NAME and c.table_schema = k.table_schema and c.table_name=k.table_name
where c.CONSTRAINT_TYPE in ('PRIMARY KEY', 'UNIQUE') and c.table_schema in (%s) and c.table_name in (%s)
order by k.table_schema asc, k.table_name asc, k.CONSTRAINT_NAME asc, k.ORDINAL_POSITION asc
`
primaryUniqueKeysSqlBatchSameDb string = `
select k.table_schema, k.table_name, k.CONSTRAINT_NAME, k.COLUMN_NAME, c.CONSTRAINT_TYPE, k.ORDINAL_POSITION
from information_schema.TABLE_CONSTRAINTS as c inner join information_schema.KEY_COLUMN_USAGE as k on
c.CONSTRAINT_NAME = k.CONSTRAINT_NAME and c.table_schema = k.table_schema and c.table_name=k.table_name
where c.CONSTRAINT_TYPE in ('PRIMARY KEY', 'UNIQUE') and c.table_schema ='%s' and c.table_name in (%s)
order by k.table_schema asc, k.table_name asc, k.CONSTRAINT_NAME asc, k.ORDINAL_POSITION asc
`
columnNamesTypesSql string = `
select COLUMN_NAME, DATA_TYPE from information_schema.columns
where table_schema=? and table_name=?
order by ORDINAL_POSITION asc
`
columnNamesTypesSqlBatch string = `
select table_schema, table_name, COLUMN_NAME, DATA_TYPE, ORDINAL_POSITION from information_schema.columns
where table_schema in (%s) and table_name in (%s)
order by table_schema asc, table_name asc, ORDINAL_POSITION asc
`
columnNamesTypesSqlBatchSameDb string = `
select table_schema, table_name, COLUMN_NAME, DATA_TYPE, ORDINAL_POSITION from information_schema.columns
where table_schema ='%s' and table_name in (%s)
order by table_schema asc, table_name asc, ORDINAL_POSITION asc
`
KEY_NONE_POS uint32 = 0
NoneBinlogPosKey string = GetBinlogPosAsKey(KEY_NONE_BINLOG, KEY_NONE_POS, KEY_NONE_POS)
G_TablesColumnsInfo TablesColumnsInfo
)
func (this TablesColumnsInfo) GetTableInfoJsonOfBinPos(schema string, table string, binlog string, spos uint32, epos uint32) (*TblInfoJson, error) {
/*
如果有非默认的表结构, 则找出所有非默认的表结构中binlogpos大于当前event并且所有非默认表结构中binlogpos最小的来使用。因为这个表结构是相应的DDL前的表结构。
对于一个binlog中最后一次DDL, 则可以增加一个{binlog+1,4,4}的表结构, 或者使用默认的(之后没有DDL的情况)
*/
myPos := mysql.Position{Name: binlog, Pos: epos}
tbKey := GetAbsTableName(schema, table)
//binlogKey := GetBinlogPosAsKey()
tbDefsArr, ok := this.tableInfos[tbKey]
if !ok {
return &TblInfoJson{}, fmt.Errorf("table struct not found for %s, maybe it was dropped. Skip it, binlog position info: %s", tbKey, myPos.String())
}
var nearestKey string = ""
var cmpResult int
for k, oneTbJson := range tbDefsArr {
if oneTbJson.DdlInfo.Binlog == KEY_NONE_BINLOG || oneTbJson.DdlInfo.StartPos == KEY_NONE_POS {
continue
}
ddlPos := mysql.Position{Name: oneTbJson.DdlInfo.Binlog, Pos: oneTbJson.DdlInfo.StartPos}
if myPos.Compare(ddlPos) < 1 {
if nearestKey == "" {
nearestKey = k
} else {
cmpResult = ddlPos.Compare(mysql.Position{Name: tbDefsArr[nearestKey].DdlInfo.Binlog,
Pos: tbDefsArr[nearestKey].DdlInfo.StartPos})
if cmpResult == -1 {
nearestKey = k
}
}
}
}
//fmt.Println("tbldef key: ", nearestKey)
if nearestKey != "" {
return tbDefsArr[nearestKey], nil
} else {
return tbDefsArr[GetBinlogPosAsKey(KEY_NONE_BINLOG, KEY_NONE_POS, KEY_NONE_POS)], nil
}
}
func GetAndMergeColumnStructFromJsonFileAndDb(cfg *ConfCmd, fromFile *TablesColumnsInfo) {
//get table columns from DB
sqlUrl := GetMysqlUrl(cfg)
SqlCon, err := CreateMysqlCon(sqlUrl)
if err != nil {
gLogger.WriteToLogByFieldsErrorExtramsgExit(err, "fail to connect to mysql", logging.ERROR, ehand.ERR_MYSQL_CONNECTION)
}
//allTables := GetAllTableNames(SqlCon, cfg)
allTables := GetAllTableNamesRegexp(SqlCon, cfg)
fromFile.GetAllTableFieldsFromDb(SqlCon, allTables, 50)
fromFile.GetAllTableKeysInfoFromDb(SqlCon, allTables, 50)
}
func GetColIndexFromKey(ki KeyInfo, columns []FieldInfo) []int {
arr := make([]int, len(ki))
for j, colName := range ki {
for i, f := range columns {
if f.FieldName == colName {
arr[j] = i
break
}
}
}
return arr
}
func (this TblInfoJson) GetOneUniqueKey(uniqueFirst bool) KeyInfo {
if uniqueFirst {
if len(this.UniqueKeys) > 0 {
return this.UniqueKeys[0]
}
}
if len(this.PrimaryKey) > 0 {
return this.PrimaryKey
} else if len(this.UniqueKeys) > 0 {
return this.UniqueKeys[0]
} else {
return KeyInfo{}
}
}
func (this *TablesColumnsInfo) CheckAndCreateTblKey(schema, table, binlog string, spos, epos uint32) bool {
if len(this.tableInfos) < 1 {
this.tableInfos = map[string]map[string]*TblInfoJson{}
}
tbKey := GetAbsTableName(schema, table)
_, ok := this.tableInfos[tbKey]
if !ok {
this.tableInfos[tbKey] = map[string]*TblInfoJson{}
}
binPosKey := GetBinlogPosAsKey(binlog, spos, epos)
_, ok = this.tableInfos[tbKey][binPosKey]
return ok
}
func (this *TablesColumnsInfo) GetAllTableFieldsFromDb(db *sql.DB, dbTbs map[string][]string, batchCnt int) error {
var (
dbName string
tbName string
colName string
dataType string
colPos int
ok bool
querySqls []string
dbTbFieldsInfo map[string]map[string][]FieldInfo = map[string]map[string][]FieldInfo{}
)
gLogger.WriteToLogByFieldsNormalOnlyMsg("geting table fields from mysql", logging.INFO)
//querySqls = GetFieldOrKeyQuerySqls(columnNamesTypesSqlBatch, dbTbs, batchCnt)
querySqls = GetFieldOrKeyQuerySqlsSameDb(columnNamesTypesSqlBatchSameDb, dbTbs, batchCnt)
for _, oneQuery := range querySqls {
rows, err := db.Query(oneQuery)
if err != nil {
gLogger.WriteToLogByFieldsErrorExtramsgExitCode(err, "fail to query mysql: "+oneQuery, logging.ERROR, ehand.ERR_MYSQL_QUERY)
rows.Close()
return err
}
for rows.Next() {
err := rows.Scan(&dbName, &tbName, &colName, &dataType, &colPos)
if err != nil {
gLogger.WriteToLogByFieldsErrorExtramsgExitCode(err, "error to get query result: "+oneQuery, logging.ERROR, ehand.ERR_MYSQL_QUERY)
rows.Close()
return err
}
_, ok = dbTbFieldsInfo[dbName]
if !ok {
dbTbFieldsInfo[dbName] = map[string][]FieldInfo{}
}
_, ok = dbTbFieldsInfo[dbName][tbName]
if !ok {
dbTbFieldsInfo[dbName][tbName] = []FieldInfo{}
}
dbTbFieldsInfo[dbName][tbName] = append(dbTbFieldsInfo[dbName][tbName], FieldInfo{FieldName: colName, FieldType: dataType})
}
rows.Close()
}
for dbName, _ = range dbTbFieldsInfo {
for tbName, tbInfo := range dbTbFieldsInfo[dbName] {
ok = this.CheckAndCreateTblKey(dbName, tbName, KEY_NONE_BINLOG, KEY_NONE_POS, KEY_NONE_POS)
tbKey := GetAbsTableName(dbName, tbName)
binPosKey := GetBinlogPosAsKey(KEY_NONE_BINLOG, KEY_NONE_POS, KEY_NONE_POS)
if ok {
this.tableInfos[tbKey][binPosKey].Columns = tbInfo
} else {
this.tableInfos[tbKey][binPosKey] = &TblInfoJson{
Database: dbName, Table: tbName, Columns: tbInfo,
DdlInfo: DdlPosInfo{Binlog: KEY_NONE_BINLOG, StartPos: KEY_NONE_POS, StopPos: KEY_NONE_POS, DdlSql: ""}}
}
}
}
return nil
}
func (this *TablesColumnsInfo) GetAllTableKeysInfoFromDb(db *sql.DB, dbTbs map[string][]string, batchCnt int) error {
var (
dbName, tbName, kName, colName, ktype string
colPos int
ok bool
dbTbKeysInfo map[string]map[string]map[string]KeyInfo = map[string]map[string]map[string]KeyInfo{}
primaryKeys map[string]map[string]map[string]bool = map[string]map[string]map[string]bool{}
)
gLogger.WriteToLogByFieldsNormalOnlyMsg("geting primary/unique keys from mysql", logging.INFO)
//querySqls := GetFieldOrKeyQuerySqls(primaryUniqueKeysSqlBatch, dbTbs, batchCnt)
querySqls := GetFieldOrKeyQuerySqlsSameDb(primaryUniqueKeysSqlBatchSameDb, dbTbs, batchCnt)
for _, oneQuery := range querySqls {
rows, err := db.Query(oneQuery)
if err != nil {
rows.Close()
gLogger.WriteToLogByFieldsErrorExtramsgExitCode(err, "fail to query mysql: "+oneQuery, logging.ERROR, ehand.ERR_MYSQL_QUERY)
return err
}
for rows.Next() {
//select k.table_schema, k.table_name, k.CONSTRAINT_NAME, k.COLUMN_NAME, c.CONSTRAINT_TYPE, k.ORDINAL_POSITION
err := rows.Scan(&dbName, &tbName, &kName, &colName, &ktype, &colPos)
if err != nil {
gLogger.WriteToLogByFieldsErrorExtramsgExitCode(err, "fail to get query result: "+oneQuery, logging.ERROR, ehand.ERR_MYSQL_QUERY)
rows.Close()
return err
}
_, ok = dbTbKeysInfo[dbName]
if !ok {
dbTbKeysInfo[dbName] = map[string]map[string]KeyInfo{}
}
_, ok = dbTbKeysInfo[dbName][tbName]
if !ok {
dbTbKeysInfo[dbName][tbName] = map[string]KeyInfo{}
}
_, ok = dbTbKeysInfo[dbName][tbName][kName]
if !ok {
dbTbKeysInfo[dbName][tbName][kName] = KeyInfo{}
}
if !sliceKits.ContainsString(dbTbKeysInfo[dbName][tbName][kName], colName) {
dbTbKeysInfo[dbName][tbName][kName] = append(dbTbKeysInfo[dbName][tbName][kName], colName)
}
if ktype == "PRIMARY KEY" {
_, ok = primaryKeys[dbName]
if !ok {
primaryKeys[dbName] = map[string]map[string]bool{}
}
_, ok = primaryKeys[dbName][tbName]
if !ok {
primaryKeys[dbName][tbName] = map[string]bool{}
}
primaryKeys[dbName][tbName][kName] = true
}
}
rows.Close()
}
var isPrimay bool = false
for dbName, _ = range dbTbKeysInfo {
for tbName, _ = range dbTbKeysInfo[dbName] {
tbKey := GetAbsTableName(dbName, tbName)
binPosKey := GetBinlogPosAsKey(KEY_NONE_BINLOG, KEY_NONE_POS, KEY_NONE_POS)
ok = this.CheckAndCreateTblKey(dbName, tbName, KEY_NONE_BINLOG, KEY_NONE_POS, KEY_NONE_POS)
if ok {
this.tableInfos[tbKey][binPosKey].PrimaryKey = KeyInfo{}
this.tableInfos[tbKey][binPosKey].UniqueKeys = []KeyInfo{}
} else {
this.tableInfos[tbKey][binPosKey] = &TblInfoJson{
Database: dbName, Table: tbName,
PrimaryKey: KeyInfo{}, UniqueKeys: []KeyInfo{},
DdlInfo: DdlPosInfo{Binlog: KEY_NONE_BINLOG, StartPos: KEY_NONE_POS, StopPos: KEY_NONE_POS, DdlSql: ""}}
}
for kn, kf := range dbTbKeysInfo[dbName][tbName] {
isPrimay = false
_, ok = primaryKeys[dbName]
if ok {
_, ok = primaryKeys[dbName][tbName]
if ok {
_, ok = primaryKeys[dbName][tbName][kn]
if ok && primaryKeys[dbName][tbName][kn] {
isPrimay = true
}
}
}
if isPrimay {
this.tableInfos[tbKey][binPosKey].PrimaryKey = kf
} else {
this.tableInfos[tbKey][binPosKey].UniqueKeys = append(this.tableInfos[tbKey][binPosKey].UniqueKeys, kf)
}
}
}
}
return nil
}
func (this *TablesColumnsInfo) DumpTblInfoJsonToFile(fname string) error {
jsonBytes, err := json.MarshalIndent(this.tableInfos, "", "\t")
if err != nil {
gLogger.WriteToLogByFieldsErrorExtramsgExitCode(err, "error when dump tables info into json string",
logging.ERROR, ehand.ERR_JSON_MARSHAL)
return err
}
_, err = file.WriteBytes(fname, jsonBytes)
gLogger.WriteToLogByFieldsErrorExtramsgExitCode(err, "Fail to write tables info json into file "+fname,
logging.ERROR, ehand.ERR_FILE_WRITE)
return err
}
func GetMysqlUrl(cfg *ConfCmd) string {
var urlStr string
if cfg.Socket == "" {
urlStr = fmt.Sprintf(
"%s:%s@tcp(%s:%d)/?autocommit=true&charset=utf8mb4,utf8&loc=Local&parseTime=true&writeTimeout=30s&readTimeout=60s&timeout=10s",
cfg.User, cfg.Passwd, cfg.Host, cfg.Port)
} else {
urlStr = fmt.Sprintf(
"%s:%s@unix(%s)/?autocommit=true&charset=utf8mb4,utf8&loc=Local&parseTime=true&writeTimeout=30s&readTimeout=60s&timeout=10s",
cfg.User, cfg.Passwd, cfg.Socket)
}
return urlStr
}
func CreateMysqlCon(mysqlUrl string) (*sql.DB, error) {
db, err := sql.Open("mysql", mysqlUrl)
if err != nil {
if db != nil {
db.Close()
}
return nil, err
}
err = db.Ping()
if err != nil {
if db != nil {
db.Close()
}
return nil, err
}
return db, nil
}
func GetFieldOrKeyQuerySqls(sqlFmt string, dbTbs map[string][]string, batchCnt int) []string {
var (
batchDbs []string
batchTbs []string
querySqls []string
i int = 0
oneSql string = ""
db string
tb string
tbArr []string
)
for db, tbArr = range dbTbs {
//fmt.Println(db, tbArr)
batchDbs = append(batchDbs, db)
for _, tb = range tbArr {
batchTbs = append(batchTbs, tb)
i++
if i >= batchCnt {
oneSql = fmt.Sprintf(sqlFmt, GetStrCommaSepFromStrSlice(batchDbs), GetStrCommaSepFromStrSlice(batchTbs))
//fmt.Printf("in for:\n\t%s\n", oneSql)
querySqls = append(querySqls, oneSql)
i = 0
batchTbs = []string{}
batchDbs = []string{db}
}
}
}
if i > 0 && i < batchCnt && len(batchTbs) > 0 {
oneSql = fmt.Sprintf(sqlFmt, GetStrCommaSepFromStrSlice(batchDbs), GetStrCommaSepFromStrSlice(batchTbs))
querySqls = append(querySqls, oneSql)
//fmt.Printf("out for:\n\t%s\n", oneSql)
}
//fmt.Println(querySqls)
return querySqls
}
func GetFieldOrKeyQuerySqlsSameDb(sqlFmt string, dbTbs map[string][]string, batchCnt int) []string {
var (
querySqls []string
oneSql string = ""
db string
endIdx int
sidx int
)
for db = range dbTbs {
tbCnt := len(dbTbs[db])
for sidx = 0; sidx < tbCnt; sidx += batchCnt {
endIdx = sidx + batchCnt
if endIdx >= tbCnt {
endIdx = tbCnt
}
oneSql = fmt.Sprintf(sqlFmt, db, GetStrCommaSepFromStrSlice(dbTbs[db][sidx:endIdx]))
querySqls = append(querySqls, oneSql)
}
}
return querySqls
}
func GetStrCommaSepFromStrSlice(arr []string) string {
arrTmp := make([]string, len(arr))
for i, v := range arr {
arrTmp[i] = fmt.Sprintf("'%s'", v)
}
return strings.Join(arrTmp, ",")
}
/*
func GetAllTableNames(sqlCon *sql.DB, cfg *ConfCmd) map[string][]string {
var (
sqlStr string = "select table_schema, table_name from information_schema.tables where "
sqlWhereArr []string = []string{"table_type='BASE TABLE'"}
schema string
table string
dbTbs map[string][]string = map[string][]string{}
)
gLogger.WriteToLogByFieldsNormalOnlyMsg("geting target table names from mysql", logging.INFO)
if len(cfg.Databases) > 0 {
sqlWhereArr = append(sqlWhereArr, fmt.Sprintf("table_schema in (%s)", GetStrCommaSepFromStrSlice(cfg.Databases)))
} else {
sqlWhereArr = append(sqlWhereArr, "table_schema not in ('information_schema', 'performance_schema')")
}
if len(cfg.Tables) > 0 {
sqlWhereArr = append(sqlWhereArr, fmt.Sprintf(" table_name in (%s)", GetStrCommaSepFromStrSlice(cfg.Tables)))
}
sqlStr += strings.Join(sqlWhereArr, " and ")
//fmt.Println(sqlStr)
rows, err := sqlCon.Query(sqlStr)
if rows != nil {
defer rows.Close()
}
if err != nil {
gLogger.WriteToLogByFieldsErrorExtramsgExit(err, "fail to query: "+sqlStr, logging.ERROR, ehand.ERR_MYSQL_QUERY)
}
for rows.Next() {
err = rows.Scan(&schema, &table)
if err != nil {
gLogger.WriteToLogByFieldsErrorExtramsgExit(err, "fail to get query result: "+sqlStr, logging.ERROR, ehand.ERR_MYSQL_QUERY)
}
_, ok := dbTbs[schema]
if ok {
dbTbs[schema] = append(dbTbs[schema], table)
} else {
dbTbs[schema] = []string{table}
}
}
return dbTbs
}
*/
func GetAllTableNamesRegexp(sqlCon *sql.DB, cfg *ConfCmd) map[string][]string {
var (
sqlStr string = "select table_schema, table_name from information_schema.tables where table_type='BASE TABLE' and table_schema not in ('information_schema', 'performance_schema')"
schema string
table string
dbTbs map[string][]string = map[string][]string{}
)
gLogger.WriteToLogByFieldsNormalOnlyMsg("geting target table names from mysql", logging.INFO)
rows, err := sqlCon.Query(sqlStr)
if rows != nil {
defer rows.Close()
}
if err != nil {
gLogger.WriteToLogByFieldsErrorExtramsgExit(err, "fail to query: "+sqlStr, logging.ERROR, ehand.ERR_MYSQL_QUERY)
}
for rows.Next() {
err = rows.Scan(&schema, &table)
if err != nil {
gLogger.WriteToLogByFieldsErrorExtramsgExit(err, "fail to get query result: "+sqlStr, logging.ERROR, ehand.ERR_MYSQL_QUERY)
}
if !cfg.IsTargetTable(schema, table) {
continue
}
_, ok := dbTbs[schema]
if ok {
dbTbs[schema] = append(dbTbs[schema], table)
} else {
dbTbs[schema] = []string{table}
}
}
return dbTbs
}