From: Peter Rabbitson Date: Sun, 11 Apr 2010 08:43:56 +0000 (+0000) Subject: RT 55865 X-Git-Tag: v0.08121~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=45a054fc8abfb26bbddb24afbfd3f2f89933b0da;p=dbsrgits%2FDBIx-Class.git RT 55865 --- diff --git a/lib/DBIx/Class/Manual/Troubleshooting.pod b/lib/DBIx/Class/Manual/Troubleshooting.pod index 820359d..18fb89e 100644 --- a/lib/DBIx/Class/Manual/Troubleshooting.pod +++ b/lib/DBIx/Class/Manual/Troubleshooting.pod @@ -158,5 +158,13 @@ can grow very large. The solution is to use the smallest practical value for LongReadLen. +=head2 create_ddl_dir does not produce DDL for MySQL views + +L does not create DDL for MySQL views if it doesn't know you +are using mysql version 5.000001 or higher. To explicity set this version, add +C to the C in the C<%sqlt> options. + + $schema->create_ddl_dir(['MySQL'], '1.0', './sql/', undef, { producer_args => { mysql_version => 5.000058 } }) + =cut