On Wed, May 20, 2009 at 10:40:17AM +0200, Paul McCullagh wrote:
> This is the latest PBXT/Drizzle tree: lp:~drizzle-pbxt/drizzle/drizzle- 
> pbxt-2
>
> I did noticed that there are some test (dtr) failures in the latest  
> revision that are unrelated to the engines. But all other tests run  
> though with PBXT as the engine. Using:

For comment_column failure, it's because the PBXT_STATISTICS I_S table has a
missing name. Here's a patch:

=== modified file 'plugin/pbxt/src/ha_pbxt.cc'
--- plugin/pbxt/src/ha_pbxt.cc  2009-05-19 14:15:38 +0000
+++ plugin/pbxt/src/ha_pbxt.cc  2009-05-21 01:30:05 +0000
@@ -1685,6 +1685,7 @@ int pbxt_init_statitics(void *p)
 {
 #ifdef DRIZZLED
        pbxt_statistics_table = (InfoSchemaTable 
*)xt_calloc_ns(sizeof(InfoSchemaTable));
+       pbxt_statistics_table->table_name= "PBXT_STATISTICS";
        registry.add(pbxt_statistics_table);
 #else
        ST_SCHEMA_TABLE *pbxt_statistics_table = (ST_SCHEMA_TABLE *) p;



of course, this means that something has to be done about the
information_schema test... perhaps we need a way to only list tables in
I_S provided by specific plugins?
-- 
Stewart Smith

_______________________________________________
Mailing list: https://launchpad.net/~drizzle-discuss
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~drizzle-discuss
More help   : https://help.launchpad.net/ListHelp

Reply via email to