Postgres में, हमें इस कोड का उपयोग करके अपवादों का "स्टैक ट्रेस" मिलता है:
EXCEPTION WHEN others THEN
GET STACKED DIAGNOSTICS v_error_stack = PG_EXCEPTION_CONTEXT;
यह "प्राकृतिक" अपवादों के लिए ठीक काम करता है, लेकिन अगर हम एक अपवाद का उपयोग करते हैं
RAISE EXCEPTION 'This is an error!';
... तो कोई स्टैक ट्रेस नहीं है। एक मेलिंग सूची प्रविष्टि के अनुसार , यह जानबूझकर हो सकता है, हालांकि मैं अपने जीवन के लिए यह पता नहीं लगा सकता कि क्यों। यह मुझे उपयोग करने के अलावा एक अपवाद फेंकने के लिए एक और तरीका जानने की इच्छा रखता है RAISE
। क्या मुझे कुछ स्पष्ट याद आ रहा है? क्या किसी को इसके लिए एक चाल है? क्या ऐसा कोई अपवाद है जिसे मैं फेंकने के लिए पोस्टग्रैस प्राप्त कर सकता हूं जिसमें मेरे चयन की एक स्ट्रिंग होगी, ताकि मुझे त्रुटि संदेश में न केवल मेरी स्ट्रिंग मिल जाए, बल्कि पूर्ण स्टैक ट्रेस भी हो जाए?
यहाँ एक पूर्ण उदाहरण है:
CREATE OR REPLACE FUNCTION error_test() RETURNS json AS $$
DECLARE
v_error_stack text;
BEGIN
-- Comment this out to see how a "normal" exception will give you the stack trace
RAISE EXCEPTION 'This exception will not get a stack trace';
-- This will give a divide by zero error, complete with stack trace
SELECT 1/0;
-- In case of any exception, wrap it in error object and send it back as json
EXCEPTION WHEN others THEN
-- If the exception we're catching is one that Postgres threw,
-- like a divide by zero error, then this will get the full
-- stack trace of the place where the exception was thrown.
-- However, since we are catching an exception we raised manually
-- using RAISE EXCEPTION, there is no context/stack trace!
GET STACKED DIAGNOSTICS v_error_stack = PG_EXCEPTION_CONTEXT;
RAISE WARNING 'The stack trace of the error is: "%"', v_error_stack;
return to_json(v_error_stack);
END;
$$ LANGUAGE plpgsql;
error_info
? एक कस्टम प्रकार की तरह दिखता है।