1. Logout callback fix.\n 2. Store permutations report improvement for demo.
This commit is contained in:
27
static/MySQL/6001_p_clear_split_temp.sql
Normal file
27
static/MySQL/6001_p_clear_split_temp.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
-- Clear previous proc
|
||||
DROP PROCEDURE IF EXISTS p_clear_split_temp;
|
||||
|
||||
|
||||
DELIMITER //
|
||||
CREATE PROCEDURE p_clear_split_temp (
|
||||
)
|
||||
BEGIN
|
||||
START TRANSACTION;
|
||||
|
||||
DROP TABLE Split_Temp;
|
||||
|
||||
COMMIT;
|
||||
END //
|
||||
DELIMITER ;
|
||||
|
||||
/*
|
||||
|
||||
CALL p_clear_shop_user_eval_temp (
|
||||
'noods, cheese ' # a_guid
|
||||
);
|
||||
|
||||
SELECT *
|
||||
FROM Shop_User_Eval_Temp;
|
||||
|
||||
*/
|
||||
Reference in New Issue
Block a user