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