(c *gc.C)
| 68 | } |
| 69 | |
| 70 | func (s *TableSuite) TestJoinNilLeftTable(c *gc.C) { |
| 71 | join := InnerJoinOn(nil, table2, EqL(table2Col3, 123)) |
| 72 | |
| 73 | buf := &bytes.Buffer{} |
| 74 | |
| 75 | err := join.SerializeSql("db", buf) |
| 76 | c.Assert(err, gc.NotNil) |
| 77 | } |
| 78 | |
| 79 | func (s *TableSuite) TestJoinNilRightTable(c *gc.C) { |
| 80 | join := InnerJoinOn(table1, nil, EqL(table2Col3, 123)) |
nothing calls this directly
no test coverage detected