Hi,
Suppose i have following two tables with sample data as shown below.
Table - A
AId name
I1 v1
I2 v2
Table - B
BId name
1 V1
2 v2
If i make inner join on both the tables using mysql on name column, it will return me both rows. It means it is behaving case insensitive.
AId BId
I1 1
I2 2
But when i used same table using BrightHouse engine it is behaving case sensitive and returning only single row.
AId BId
I2 2
How can i make Infobright case insensitive?

