func (s *testIndexSuite) testGetIndex(c *C, t table.Table, name string, isExist bool) { index := t.FindIndexByColName(name) if isExist { c.Assert(index, NotNil) } else { c.Assert(index, IsNil) } }