MCPcopy Index your code
hub / github.com/bytebase/bytebase / GoCommand

Struct GoCommand

backend/plugin/parser/tsql/batch/batch.go:52–56  ·  view source on GitHub ↗

GoCommand signals the end of a batch of Transact-SQL statements to the SQL Server Utilities. https://learn.microsoft.com/en-us/sql/t-sql/language-elements/sql-server-utilities-statements-go?view=sql-server-ver16

Source from the content-addressed store, hash-verified

50// GoCommand signals the end of a batch of Transact-SQL statements to the SQL Server Utilities.
51// https://learn.microsoft.com/en-us/sql/t-sql/language-elements/sql-server-utilities-statements-go?view=sql-server-ver16
52type GoCommand struct {
53 // Count is a positive integer, the batch preceding the GO command will execute the specified number of times.
54 // The default value of Count is 1.
55 Count uint
56}
57
58// String returns the string representation of the command.
59func (g *GoCommand) String() string {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected