Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2020-05-05 11:51:55 +0300
committerArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2020-05-05 11:51:55 +0300
commitb2615036816ba3153039442c2dd6c5d5070b4703 (patch)
tree8e6dda2f1d54208bf1c1aadae893a6528f1bd6d2 /include/dbschema.h
parent816d25d59aee50dc934ee812265375fdc6f889d1 (diff)
........S. [ZBX-17676] fix MAX_NUMBER_OF_FIELDS to be 86
Diffstat (limited to 'include/dbschema.h')
-rw-r--r--include/dbschema.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dbschema.h b/include/dbschema.h
index 15031f846bc..dcdfb77b54f 100644
--- a/include/dbschema.h
+++ b/include/dbschema.h
@@ -38,7 +38,7 @@
#define ZBX_TYPE_SHORTTEXT 7
#define ZBX_TYPE_LONGTEXT 8
-#define ZBX_MAX_FIELDS 88 /* maximum number of fields in a table plus one for null terminator in dbschema.c */
+#define ZBX_MAX_FIELDS 86 /* maximum number of fields in a table plus one for null terminator in dbschema.c */
#define ZBX_TABLENAME_LEN 26
#define ZBX_TABLENAME_LEN_MAX (ZBX_TABLENAME_LEN + 1)
#define ZBX_FIELDNAME_LEN 28