Browse Source

fix(nocodb): cast date on eq filter in datetime

pull/7173/head
DarkPhoenix2704 11 months ago committed by Ramesh Mane
parent
commit
580570c869
  1. 8
      packages/nocodb/src/db/conditionV2.ts

8
packages/nocodb/src/db/conditionV2.ts

@ -580,9 +580,17 @@ const parseConditionV2 = async (
// mysql is case-insensitive for strings, turn to case-sensitive
qb = qb.where(knex.raw('BINARY ?? = ?', [field, val]));
}
} else {
if(column.uidt === UITypes.DateTime) {
if(qb.client.config.client === 'pg') {
qb = qb.where(knex.raw('??::date = ?', [field, val]));
} else {
qb = qb.where(knex.raw('DATE(??) = DATE(?)', [field, val]));
}
} else {
qb = qb.where(field, val);
}
}
if (column.uidt === UITypes.Rating && val === 0) {
// unset rating is considered as NULL
qb = qb.orWhereNull(field);

Loading…
Cancel
Save