Support MySQL 8 - newid() database function definition changed #817

This commit is contained in:
Maxim Gorbunkov 2018-05-16 16:09:14 +04:00
parent 2ce2ab7af9
commit 6a736a5ffd

View File

@ -972,7 +972,7 @@ create index IDX_SESSION_LOG_STARTED_TS on SEC_SESSION_LOG (STARTED_TS DESC)^
/**********************************************************************************************/ /**********************************************************************************************/
drop function if exists newid^ drop function if exists newid^
create function newid() returns varchar(32) not deterministic create function newid() returns varchar(32) not deterministic no sql
return replace(uuid(), '-', '')^ return replace(uuid(), '-', '')^
/**********************************************************************************************/ /**********************************************************************************************/