MCPcopy Create free account
hub / github.com/dolthub/doltgresql / New

Function New

postgres/parser/errorutil/unimplemented/unimplemented.go:34–36  ·  view source on GitHub ↗

This file re-implements the unimplemented primitives from the original pgerror package, using the primitives from the errors library instead. New constructs an unimplemented feature error.

(feature, msg string)

Source from the content-addressed store, hash-verified

32
33// New constructs an unimplemented feature error.
34func New(feature, msg string) error {
35 return unimplementedInternal(1 /*depth*/, 0 /*issue*/, feature /*detail*/, false /*format*/, msg)
36}
37
38// Newf constructs an unimplemented feature error.
39// The message is formatted.

Callers 1

checkFunctionUsageMethod · 0.92

Calls 1

unimplementedInternalFunction · 0.85

Tested by

no test coverage detected