From 21e3bba4c4f58435b6a15ab33c85657eec3f88b1 Mon Sep 17 00:00:00 2001 From: Rifa Achrinza <25147899+achrinza@users.noreply.github.com> Date: Sun, 7 Aug 2022 21:38:11 +0800 Subject: [PATCH] fix: remove redundant debug closes https://github.com/loopbackio/loopback-connector-mysql/issues/352 Signed-off-by: Rifa Achrinza <25147899+achrinza@users.noreply.github.com> --- lib/mysql.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/mysql.js b/lib/mysql.js index 21e4331..9dd4330 100644 --- a/lib/mysql.js +++ b/lib/mysql.js @@ -561,8 +561,6 @@ MySQL.prototype.buildExpression = function(columnName, operator, operatorValue, clause = columnName + ' REGEXP BINARY ?'; } - if (operatorValue.ignoreCase) - g.warn('{{MySQL}} {{regex}} syntax does not respect the {{`i`}} flag'); if (operatorValue.global) g.warn('{{MySQL}} {{regex}} syntax does not respect the {{`g`}} flag');