(c *gc.C)
| 77 | } |
| 78 | |
| 79 | func (s *TableSuite) TestJoinNilRightTable(c *gc.C) { |
| 80 | join := InnerJoinOn(table1, nil, EqL(table2Col3, 123)) |
| 81 | |
| 82 | buf := &bytes.Buffer{} |
| 83 | |
| 84 | err := join.SerializeSql("db", buf) |
| 85 | c.Assert(err, gc.NotNil) |
| 86 | } |
| 87 | |
| 88 | func (s *TableSuite) TestJoinNilOnCondition(c *gc.C) { |
| 89 | join := InnerJoinOn(table1, table2, nil) |
nothing calls this directly
no test coverage detected