1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

chore(codestyle): MCOL-5405: repace windows CRLF with virtious linux one

This commit is contained in:
Leonid Fedorov
2024-07-25 18:44:00 +00:00
committed by Leonid Fedorov
parent 2e61c9909b
commit 13b23e8510
84 changed files with 7032 additions and 7032 deletions

View File

@ -14,19 +14,19 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA. */
/*
* $Id: calremoveuserpriority.sql 8777 2012-08-01 21:52:34Z zzhu $
*/
DELIMITER $$
CREATE PROCEDURE infinidb_querystats.calRemoveUserPriority(IN host VARCHAR(50), IN usr VARCHAR(50))
LANGUAGE SQL
NOT DETERMINISTIC
MODIFIES SQL DATA
SQL SECURITY INVOKER
COMMENT 'Procedure to remove a given InfiniDB user user_priority'
BEGIN
delete from infinidb_querystats.user_priority where upper(user_priority.user) = upper(usr) and upper(user_priority.host) = upper(host);
END$$
DELIMITER ;
/*
* $Id: calremoveuserpriority.sql 8777 2012-08-01 21:52:34Z zzhu $
*/
DELIMITER $$
CREATE PROCEDURE infinidb_querystats.calRemoveUserPriority(IN host VARCHAR(50), IN usr VARCHAR(50))
LANGUAGE SQL
NOT DETERMINISTIC
MODIFIES SQL DATA
SQL SECURITY INVOKER
COMMENT 'Procedure to remove a given InfiniDB user user_priority'
BEGIN
delete from infinidb_querystats.user_priority where upper(user_priority.user) = upper(usr) and upper(user_priority.host) = upper(host);
END$$
DELIMITER ;