MCPcopy Create free account
hub / github.com/araddon/qlbridge / String

Method String

rel/sql.go:912–916  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

910
911func (m *PreparedStatement) Keyword() lex.TokenType { return lex.TokenPrepare }
912func (m *PreparedStatement) String() string {
913 w := expr.NewDefaultWriter()
914 m.WriteDialect(w)
915 return w.String()
916}
917func (m *PreparedStatement) WriteDialect(w expr.DialectWriter) {
918 io.WriteString(w, "PREPARE ")
919 w.WriteIdentity(m.Alias)

Callers

nothing calls this directly

Calls 3

WriteDialectMethod · 0.95
NewDefaultWriterFunction · 0.92
StringMethod · 0.65

Tested by

no test coverage detected