mirror of https://github.com/citusdata/citus.git
Fix build issue in GCC 10 (#3790)
As reported in #3787, we were having issues while building citus with "GCC Red Hat 10" (maybe in some other versions of gcc as well). Fixes "multiple definition of 'CitusNodeTagNames'" error by explicitly specifying storage of CitusNodeTagNames to be extern.pull/3784/head^2
parent
2e927bd6b7
commit
b8dd8f50d1
|
@ -70,7 +70,7 @@ typedef enum CitusNodeTag
|
|||
} CitusNodeTag;
|
||||
|
||||
|
||||
const char** CitusNodeTagNames;
|
||||
extern const char** CitusNodeTagNames;
|
||||
|
||||
|
||||
typedef struct CitusNode
|
||||
|
|
Loading…
Reference in New Issue