We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 400105c + 211376e commit 3bbf620Copy full SHA for 3bbf620
pkg/sql/sqlerrors/errors.go
@@ -160,12 +160,6 @@ func NewUndefinedTypeError(name tree.NodeFormatter) error {
160
return pgerror.Newf(pgcode.UndefinedObject, "type %q does not exist", tree.ErrString(name))
161
}
162
163
-// NewUndefinedFunctionError creates an error that represents a missing user
164
-// defined function.
165
-func NewUndefinedFunctionError(fn string) error {
166
- return pgerror.Newf(pgcode.UndefinedFunction, "function %q does not exist", fn)
167
-}
168
-
169
// NewUndefinedRelationError creates an error that represents a missing database table or view.
170
func NewUndefinedRelationError(name tree.NodeFormatter) error {
171
return pgerror.Newf(pgcode.UndefinedTable,
0 commit comments