File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff 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 ]))
You can’t perform that action at this time.
0 commit comments