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

Struct DropCommand

ast/ast.go:370–373  ·  view source on GitHub ↗

DropCommand - Part of Command that represent dropping table Example: DROP TABLE table;

Source from the content-addressed store, hash-verified

368// Example:
369// DROP TABLE table;
370type DropCommand struct {
371 Token token.Token
372 Name Identifier // name of the table
373}
374
375func (ls DropCommand) CommandNode() {}
376func (ls DropCommand) TokenLiteral() string { return ls.Token.Literal }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected