MCPcopy Create free account
hub / github.com/LissaGreense/GO4SQL / Sequence

Struct Sequence

ast/ast.go:10–12  ·  view source on GitHub ↗

Sequence - Sequence of operations commands Example: Commands[0] = SELECT * FROM Customers Commands[1] = WHERE City LIKE '%es%';

Source from the content-addressed store, hash-verified

8// Commands[0] = SELECT * FROM Customers
9// Commands[1] = WHERE City LIKE '%es%';
10type Sequence struct {
11 Commands []Command
12}
13
14// Node is connector between commands and expressions
15type Node interface {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected