From 73dd7e67a1b9d2bb92ba1382a29d74dba5784f3a Mon Sep 17 00:00:00 2001 From: Maksim Bezsaznyj Date: Tue, 1 Dec 2020 01:47:02 -0500 Subject: [PATCH] Adding vitess_hash function to ast (#1089) Co-authored-by: Arenatlx --- ast/functions.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ast/functions.go b/ast/functions.go index c4edf2c6d..13f3b6bae 100644 --- a/ast/functions.go +++ b/ast/functions.go @@ -279,6 +279,7 @@ const ( UUIDShort = "uuid_short" UUIDToBin = "uuid_to_bin" BinToUUID = "bin_to_uuid" + VitessHash = "vitess_hash" // get_lock() and release_lock() is parsed but do nothing. // It is used for preventing error in Ruby's activerecord migrations. GetLock = "get_lock"