Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Xiaomi
soar
提交
019ee551
S
soar
项目概览
Xiaomi
/
soar
大约 1 年 前同步成功
通知
398
Star
8512
Fork
1328
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
soar
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
019ee551
编写于
12月 19, 2018
作者:
martianzhang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
try to fix Rows.Scan with NULL able column
上级
19a0bc41
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
10 deletion
+16
-10
advisor/index.go
advisor/index.go
+1
-2
database/show.go
database/show.go
+15
-8
未找到文件。
advisor/index.go
浏览文件 @
019ee551
...
...
@@ -785,7 +785,6 @@ func CompleteColumnsInfo(stmt sqlparser.Statement, cols []*common.Column, env *e
if
find
{
break
}
}
// 如果不依赖env环境,利用ast中包含的信息推理列的库表信息
...
...
@@ -904,7 +903,7 @@ func (idxAdv *IndexAdvisor) calcCardinality(cols []*common.Column) []*common.Col
// 如果是不存在的表就会报错,报错的可能性有三个:
// 1.数据库错误 2.表不存在 3.临时表
// 而这三种错误都是不需要在这一层关注的,直接跳过
common
.
Log
.
Debug
(
"calcCardinality error: %v"
,
err
)
common
.
Log
.
Warn
(
"calcCardinality error: %v"
,
err
)
continue
}
...
...
database/show.go
浏览文件 @
019ee551
...
...
@@ -18,10 +18,11 @@ package database
import
(
"fmt"
"github.com/XiaoMi/soar/common"
"regexp"
"strconv"
"strings"
"github.com/XiaoMi/soar/common"
)
// SHOW TABLE STATUS Syntax
...
...
@@ -191,6 +192,10 @@ func NewTableIndexInfo(tableName string) *TableIndexInfo {
func
(
db
*
Connector
)
ShowIndex
(
tableName
string
)
(
*
TableIndexInfo
,
error
)
{
tbIndex
:=
NewTableIndexInfo
(
tableName
)
if
db
.
Database
==
""
||
tableName
==
""
{
return
nil
,
fmt
.
Errorf
(
"database('%s') or table('%s') name should not empty"
,
db
.
Database
,
tableName
)
}
// 执行 show create table
res
,
err
:=
db
.
Query
(
fmt
.
Sprintf
(
"show index from `%s`.`%s`"
,
db
.
Database
,
tableName
))
if
err
!=
nil
{
...
...
@@ -456,12 +461,14 @@ func (db *Connector) FindColumn(name, dbName string, tables ...string) ([]*commo
var
col
common
.
Column
for
res
.
Rows
.
Next
()
{
var
character
,
collation
string
res
.
Rows
.
Scan
(
&
col
.
Table
,
&
col
.
DB
,
&
col
.
DataType
,
&
col
.
Character
,
&
col
.
Collation
)
&
character
,
&
collation
)
col
.
Character
=
character
col
.
Collation
=
collation
// 填充字符集和排序规则
if
col
.
Character
==
""
{
// 当从`INFORMATION_SCHEMA`.`COLUMNS`表中查询不到相关列的character和collation的信息时
...
...
@@ -479,13 +486,13 @@ func (db *Connector) FindColumn(name, dbName string, tables ...string) ([]*commo
return
columns
,
err
}
var
tbCollation
string
var
tbCollation
[]
byte
if
newRes
.
Rows
.
Next
()
{
newRes
.
Rows
.
Scan
(
&
tbCollation
)
}
if
tbCollation
!=
""
{
col
.
Character
=
strings
.
Split
(
tbCollation
,
"_"
)[
0
]
col
.
Collation
=
tbCollation
if
string
(
tbCollation
)
!=
""
{
col
.
Character
=
strings
.
Split
(
string
(
tbCollation
)
,
"_"
)[
0
]
col
.
Collation
=
string
(
tbCollation
)
}
}
columns
=
append
(
columns
,
&
col
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录