(ctx Context, alias string)
| 417 | } |
| 418 | |
| 419 | func (d *SQLiteDialect) RenderTableAlias(ctx Context, alias string) { |
| 420 | ctx.WriteString(` AS `) |
| 421 | ctx.Quote(alias) |
| 422 | } |
| 423 | |
| 424 | func (d *SQLiteDialect) RenderLateralJoinClose(ctx Context, alias string) { |
| 425 | ctx.WriteString(`) AS `) |
nothing calls this directly
no test coverage detected