Exemplo n.º 1
0
Arquivo: stmt.go Projeto: matomesc/rkt
func (s *selectStmt) explain(ctx *execCtx, w strutil.Formatter) {
	p, err := s.plan(ctx)
	if err != nil {
		w.Format("ERROR: %v\n", err)
		return
	}

	p.explain(w)
}
Exemplo n.º 2
0
Arquivo: stmt.go Projeto: matomesc/rkt
func (s *insertIntoStmt) explain(ctx *execCtx, w strutil.Formatter) {
	w.Format("%s\n", s)
}
Exemplo n.º 3
0
Arquivo: stmt.go Projeto: matomesc/rkt
func (s *dropTableStmt) explain(ctx *execCtx, w strutil.Formatter) {
	w.Format("%s\n", s)
}
Exemplo n.º 4
0
Arquivo: stmt.go Projeto: matomesc/rkt
func (s *alterTableAddStmt) explain(ctx *execCtx, w strutil.Formatter) {
	w.Format("%s\n", s)
}
Exemplo n.º 5
0
Arquivo: stmt.go Projeto: matomesc/rkt
func (s *updateStmt) explain(ctx *execCtx, w strutil.Formatter) {
	w.Format("%s\n", s)
}
Exemplo n.º 6
0
Arquivo: stmt.go Projeto: matomesc/rkt
func (s *createIndexStmt) explain(ctx *execCtx, w strutil.Formatter) {
	w.Format("%s\n", s)
}
Exemplo n.º 7
0
Arquivo: stmt.go Projeto: matomesc/rkt
func (s rollbackStmt) explain(ctx *execCtx, w strutil.Formatter) {
	w.Format("%s\n", s)
}
Exemplo n.º 8
0
Arquivo: stmt.go Projeto: matomesc/rkt
func (s commitStmt) explain(ctx *execCtx, w strutil.Formatter) {
	w.Format("%s\n", s)
}
Exemplo n.º 9
0
Arquivo: stmt.go Projeto: matomesc/rkt
func (s beginTransactionStmt) explain(ctx *execCtx, w strutil.Formatter) {
	w.Format("%s\n", s)
}