regexp1987 / common-schema

Automatically exported from code.google.com/p/common-schema
0 stars 0 forks source link

common_schema 2.2 fails on install #71

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,

There is an extra semicolon in distributing file on row 11255 that causes 
install script to fail.

BR,
Marius

Specific place in a script(check the end(:

"-- 
-- Lists routines with rdebug's debugging info    
-- 

CREATE OR REPLACE
ALGORITHM = MERGE
SQL SECURITY INVOKER
VIEW debugged_routines AS
  SELECT 
    ROUTINE_SCHEMA,
    ROUTINE_NAME,
    ROUTINE_TYPE,
    CONCAT('call `', DATABASE(), '`.rdebug_compile_routine(', QUOTE(ROUTINE_SCHEMA),', ', QUOTE(ROUTINE_NAME),', false)') AS sql_undebug_routine
  FROM
    INFORMATION_SCHEMA.ROUTINES
  WHERE 
    locate(_rdebug_get_debug_code_start(), ROUTINE_DEFINITION) > 0;
;

-- 
-- Complement INFORMATION_SCHEMA.ROUTINES with missing param_list    
-- 
"

Original issue reported on code.google.com by marius.a...@gmail.com on 19 Nov 2014 at 9:36

GoogleCodeExporter commented 8 years ago
Thank you -- will remove

Original comment by shlomi.n...@gmail.com on 13 Dec 2014 at 7:21