Damien Hardy
2009-04-15 10:51:34 UTC
Hello,
I am testing sequoia and myosotis for some PHP projects (magento for
instance) for a few days now.
My first tests was quiet encouraging, very impressed by all the
possibility this platform may offer (fail over, scalability,
exploitation).
I am now blocked by a tiny bug that my search on the ML show me that is
suppose to be closed (
http://forge.continuent.org/pipermail/myosotis/2008-January/000134.html )
...
so I'm a bit disappointed.
Here the facts :
I use
- MySQL 5.0 (debian lenny version)
- sequoia 2.10.10 (binary version) with j/connector 5.0.8 (binaries
from mysql.com)
- myosotis 0.6.5
In my database I have a table (admin_user) with a tinyint (is_active
default 1)
-When I request it directly from mysql-client to mysqld I get a "1" and
i'm happy :
l# echo 'select is_active from admin_user\G;' |mysql magento
*************************** 1. row ***************************
is_active: 1
- When I request it from the sql client in sequoia I get a "true" and I'm
quite happy :
# select is_active from admin_user;
+-----------+
| is_active |
+-----------+
| true |
+-----------+
But When i request it from mysql-client via myosotis I get an 0x01 and
that's failing on my php application.
# echo 'select is_active from admin_user\G;' | mysql -h hostname -P 9999
-u magento myDB
*************************** 1. row ***************************
is_active: (0x01 in case of cleaning by mailer)
Where am I wrong ?
Best regards,
I am testing sequoia and myosotis for some PHP projects (magento for
instance) for a few days now.
My first tests was quiet encouraging, very impressed by all the
possibility this platform may offer (fail over, scalability,
exploitation).
I am now blocked by a tiny bug that my search on the ML show me that is
suppose to be closed (
http://forge.continuent.org/pipermail/myosotis/2008-January/000134.html )
...
so I'm a bit disappointed.
Here the facts :
I use
- MySQL 5.0 (debian lenny version)
- sequoia 2.10.10 (binary version) with j/connector 5.0.8 (binaries
from mysql.com)
- myosotis 0.6.5
In my database I have a table (admin_user) with a tinyint (is_active
default 1)
-When I request it directly from mysql-client to mysqld I get a "1" and
i'm happy :
l# echo 'select is_active from admin_user\G;' |mysql magento
*************************** 1. row ***************************
is_active: 1
- When I request it from the sql client in sequoia I get a "true" and I'm
quite happy :
# select is_active from admin_user;
+-----------+
| is_active |
+-----------+
| true |
+-----------+
But When i request it from mysql-client via myosotis I get an 0x01 and
that's failing on my php application.
# echo 'select is_active from admin_user\G;' | mysql -h hostname -P 9999
-u magento myDB
*************************** 1. row ***************************
is_active: (0x01 in case of cleaning by mailer)
Where am I wrong ?
Best regards,
--
Damien Hardy
Damien Hardy