MCPcopy Create free account
hub / github.com/dolthub/doltgresql / nodeLockingClause

Function nodeLockingClause

server/ast/locking_clause.go:26–31  ·  view source on GitHub ↗

nodeLockingClause handles *tree.LockingClause nodes.

(ctx *Context, node tree.LockingClause)

Source from the content-addressed store, hash-verified

24
25// nodeLockingClause handles *tree.LockingClause nodes.
26func nodeLockingClause(ctx *Context, node tree.LockingClause) (vitess.Statement, error) {
27 if len(node) == 0 {
28 return nil, nil
29 }
30 return nil, errors.Errorf("locking clauses are not yet supported")
31}

Callers 1

nodeSelectFunction · 0.85

Calls 1

ErrorfMethod · 0.65

Tested by

no test coverage detected