fixed: incorrect query was created when using neq() method with finder - there was no and or or conjunction

This commit is contained in:
Tomasz Sowa 2021-02-23 16:51:43 +01:00
parent b0a277c0eb
commit c18bb48cc8
1 changed files with 1 additions and 0 deletions

View File

@ -116,6 +116,7 @@ void DbExpression::field_before()
output_type == MORM_OUTPUT_TYPE_WHERE_GT ||
output_type == MORM_OUTPUT_TYPE_WHERE_LE ||
output_type == MORM_OUTPUT_TYPE_WHERE_LT ||
output_type == MORM_OUTPUT_TYPE_WHERE_NOT_EQ ||
output_type == MORM_OUTPUT_TYPE_WHERE_IN )
{
int conjunction = MORM_CONJUNCTION_AND;