The way I did it with SQL Server is like this:
Let's say you have a field called "Company" which is multivalued, then
you would declare it like this in schema.xml:
in your SQL query, you would do this:
select
table.field1
, (select distinct cast (c.ID AS VARCHAR(10)) + ','
from tab
I had read http://wiki.apache.org/solr/DataImportHandler but I didn't
realize that was for multivalued.
Than you very much!
On Tue, Jun 8, 2010 at 8:01 AM, Alexey Serba wrote:
> Hi Alberto,
>
> You can add child entity which returns multiple records, i.e.
>
>
>
>
>
>
> HTH,
> Alex
>
>
Hi Alberto,
You can add child entity which returns multiple records, i.e.
HTH,
Alex
2010/6/7 Alberto García Sola :
> Hello, this is my first message to this list.
>
> I was wondering if it is possible to use multiValued when using MySQL (or
> any SQL-database engine) through DataImp