Skip to content

Commit 29b6c71

Browse files
authored
Merge pull request #36 from dataux/qlbridge_upgrade
upstream qlbridge upgrade
2 parents 8e9b10b + 6ca27e3 commit 29b6c71

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

planner/executor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ func (m *ExecutorGrid) WalkSelect(p *plan.Select) (exec.Task, error) {
120120
//u.WarnT(10)
121121
//u.Debugf("%p Walk Select %s", m, p.Stmt)
122122
if !p.ChildDag && len(p.Stmt.With) > 0 && p.Stmt.With.Bool("distributed") {
123-
u.Warnf("%p has distributed!!!!!: %#v", m, p.Stmt.With)
123+
u.Debugf("%p has distributed!!!!!: %#v", m, p.Stmt.With)
124124
// We are going to run tasks remotely, so need a local grid source for them
125125
// remoteSink -> nats -> localSource
126126
localTask := exec.NewTaskSequential(m.Ctx)

planner/sqlactor.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ func (m *SqlActor) Running() dfa.Letter {
280280
for {
281281
select {
282282
case <-m.exit:
283-
u.Warnf("%s exit? what caused this?", m)
283+
u.Debugf("%s exit? what caused this?", m)
284284
return Exit
285285
case <-ticker.C:
286286
u.Debugf("%p alive %s", m, m.ID())
@@ -297,7 +297,7 @@ func (m *SqlActor) Running() dfa.Letter {
297297
}
298298
//u.Warnf("%s about to do ticker store", m)
299299
case <-finished:
300-
u.Warnf("%s sqlactor ending due to everybody finished", m)
300+
u.Debugf("%s sqlactor ending due to everybody finished", m)
301301
return EverybodyFinished
302302
case <-masterDone:
303303
// In this scenario, we have not finished our dag, either client

0 commit comments

Comments
 (0)