Exemplo n.º 1
0
func (b *executorBuilder) buildShowDDL(v *plan.ShowDDL) Executor {
	return &ShowDDLExec{
		fields: v.Fields(),
		ctx:    b.ctx,
	}
}
Exemplo n.º 2
0
func (b *executorBuilder) buildShowDDL(v *plan.ShowDDL) Executor {
	return &ShowDDLExec{
		ctx:    b.ctx,
		schema: v.GetSchema(),
	}
}