File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 33travis
44.git
55.travis.yml
6+
7+ * .gcno
8+ * .gcda
9+ * .gcov
10+ * .so
11+ * .o
Original file line number Diff line number Diff line change 5151
5252#define CHECKARRVALID (x ) \
5353 do { \
54- if (x) { \
54+ if (x == NULL) \
55+ ereport(ERROR, \
56+ (errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED), \
57+ errmsg("array must not be NULL"))); \
58+ else if (x) { \
5559 if (ARR_NDIM(x) != NDIM && ARR_NDIM(x) != 0) \
5660 ereport(ERROR, \
5761 (errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR), \
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ if test -f regression.diffs; then cat regression.diffs; fi
9999if [ $status -ne 0 ]; then exit 1; fi
100100
101101# generate *.gcov files
102- gcov * .c * .h
102+ gcov src/ * .c src/ * .h
103103
104104
105105set +ux
You can’t perform that action at this time.
0 commit comments