mirror of https://github.com/citusdata/citus.git
Merge branch 'master' into 1196-greedy-hook
commit
9f3d4dd7fd
|
@ -6,6 +6,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres.h"
|
#include "postgres.h"
|
||||||
|
#include "utils/memutils.h"
|
||||||
|
|
||||||
#include "distributed/citus_nodes.h"
|
#include "distributed/citus_nodes.h"
|
||||||
#include "distributed/errormessage.h"
|
#include "distributed/errormessage.h"
|
||||||
|
@ -54,5 +55,7 @@ RaiseDeferredErrorInternal(DeferredErrorMessage *error, int elevel)
|
||||||
errorData->lineno = error->linenumber;
|
errorData->lineno = error->linenumber;
|
||||||
errorData->funcname = error->functionname;
|
errorData->funcname = error->functionname;
|
||||||
|
|
||||||
|
errorData->assoc_context = ErrorContext;
|
||||||
|
|
||||||
ThrowErrorData(errorData);
|
ThrowErrorData(errorData);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue