Skip to content

Commit 0022aa5

Browse files
committed
rm logs
1 parent cb765e0 commit 0022aa5

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

sql/planbuilder/select.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import (
1818
"fmt"
1919

2020
ast "github.com/dolthub/vitess/go/vt/sqlparser"
21-
"github.com/sirupsen/logrus"
2221

2322
"github.com/dolthub/go-mysql-server/sql"
2423
"github.com/dolthub/go-mysql-server/sql/expression"
@@ -60,14 +59,6 @@ func (b *Builder) buildSelect(inScope *scope, s *ast.Select) (outScope *scope) {
6059
// 5) Build top-level scopes, replacing aggregation and aliases with
6160
// projections from (4).
6261
// 6) Finish with final target projections.
63-
64-
// Process the Lock field for FOR UPDATE clauses
65-
if s.Lock != "" {
66-
logrus.Info("SELECT statement has Lock field:", s.Lock)
67-
// For now, we'll just log the lock information
68-
// In a full implementation, this would create a lock node
69-
// that would be applied to the final query result
70-
}
7162
fromScope := b.buildFrom(inScope, s.From)
7263
if cn, ok := fromScope.node.(sql.CommentedNode); ok && len(s.Comments) > 0 {
7364
fromScope.node = cn.WithComment(string(s.Comments[0]))

0 commit comments

Comments
 (0)