Merge pull request 'Fix geofence searching with geofence name' (#297) from pramilaniroshan/device-mgt-core:rm-10431 into master

Reviewed-on: community/device-mgt-core#297
scope_role_map
Pahansith Gunathilake 9 months ago
commit 73304a826d

@ -143,7 +143,7 @@ public class GenericGeofenceDAOImpl extends AbstractGeofenceDAOImpl {
try (PreparedStatement stmt = conn.prepareStatement(sql)) {
stmt.setInt(index++, tenantId);
if (isNameProvided) {
stmt.setString(index++, request.getProperty("%" + DeviceManagementConstants.GeoServices.FENCE_NAME).toString() + "%");
stmt.setString(index++, "%" + request.getProperty(DeviceManagementConstants.GeoServices.FENCE_NAME).toString() + "%");
}
stmt.setInt(index++, request.getRowCount());
stmt.setInt(index, request.getStartIndex());

Loading…
Cancel
Save