box: remove static_assert() from field_def.h
This patch removes the static_assert(). This static_assert was necessary because after commit 037e2e44 ("sql: clean-up affinity from SQL source code") and before commit 078bcf00 ("sql: remove implicit cast from comparison opcodes"), 4 bits of the p5 field of the struct VdbeOp were used to store the field type in VDBE comparison opcodes. After the commit 078bcf00 ("sql: remove implicit cast from comparison opcodes"), these opcodes no longer need the field type, so this static_assert() is now unneeded. NO_DOC=refactoring NO_TEST=refactoring NO_CHANGELOG=refactoring
Please register or sign in to comment