Re: [Maria-developers] Buildbot failures: Microsecond-related changes break innodb_plugin but not xtradb

2011-06-06 Thread Michael Widenius
Hi! Igor == Igor Babaev i...@askmonty.org writes: Igor On 06/04/2011 02:19 AM, Sergey Petrunya wrote: Hi! All of the recent 5.3 builds in buildbot have two failures: innodb_plugin.innodb_bug54044 'innodb_plugin' innodb_plugin.innodb_information_schema 'innodb_plugin' cut Igor Hi,

[Maria-developers] [Maria-discuss] Reqeust for SHOW FULL FIELDS FROM and virtual tables in MariaDB

2011-06-06 Thread Michael Widenius
Hi! Peter == Peter Laursen peter_laur...@webyog.com writes: Peter Refer http://kb.askmonty.org/v/virtual-columns - the example Peter CREATE TABLE table1 ( Peter a INT NOT NULL, Peter b VARCHAR(32), Peter c INT AS (a MOD 10) virtual, Peter d VARCHAR(5) AS (LEFT(b,5)) persistent); Peter now

Re: [Maria-developers] [Maria-discuss] Reqeust for SHOW FULL FIELDS FROM and virtual tables in MariaDB

2011-06-06 Thread Michael Widenius
Hi! Peter == Peter Laursen peter_laur...@webyog.com writes: Peter I have a few more points to consider: Peter CREATE TABLE table1 (as before); Peter SET SQL_MODE = 'strict_all_tables'; Peter INSERT INTO `test`.`table1`(`a`,`b`,`c`,`d`) VALUES ( '1','a',NULL,NULL); -- Peter success Peter