Does infobright not have support for DECIMAL datatype? I tried to create a table with DECIMALS in it, and I got an error message stating that there was an unsupported datatype in the create statement (but not WHICH datatype was unsupported). So, I tried a test table:
create table foo (money decimal(19,3));
and got the following error message:
ERROR 8 (HY000): Unsupported data type
I can work around this by storing my decimals as bigints and scaling them when I pull them out of the database, but this seems like a pretty obvious thing to support in a data warehouse environment.
Also, I could not find any reference in the documentation that’s available to me about which datatypes are/aren’t supported (I could have missed it).