You've already forked mariadb-columnstore-engine
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:
committed by
Leonid Fedorov
parent
2e61c9909b
commit
13b23e8510
@ -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 ;
|
||||
|
Reference in New Issue
Block a user