is00hcw / tungsten-replicator

Automatically exported from code.google.com/p/tungsten-replicator
0 stars 1 forks source link

Replicator shows incorrect Warning message when running against 5.6 #452

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1. Run replicator against MySQL 5.6 with Innodb enabled

What is the expected output?
No warnings are displayed

What do you see instead?

INFO   | jvm 1    | 2013/02/12 14:05:12 | 2013-02-12 14:05:12,110 [cluster - 
pool-2-thread-1] WARN  extractor.mysql.MySQLExtractor Warning! InnoDB support 
does not seem to be activated (check mysql have_innodb variable)

What is the possible cause?

show variables like 'have_innodb' is not supported under 5.6

What is the proposed solution?

 select * from information_schema.engines where engine='InnoDB';

Additional information

...

Use labels and text to provide additional information.

Original issue reported on code.google.com by neil.arm...@continuent.com on 12 Feb 2013 at 2:20

GoogleCodeExporter commented 9 years ago
This SQL only works on 5.1>

Original comment by neil.arm...@continuent.com on 12 Feb 2013 at 2:28