I think the two tables are the same.  Correct?

create table foo (

    source text,
    target text,
    primary key( source, target )
)


vs

create table foo (

    source text,
    target set<text>,
    primary key( source )
)

… meaning that the first one, under the covers is represented the same as
the second.  As a slice.

Am I correct?

-- 

Founder/CEO Spinn3r.com
Location: *San Francisco, CA*
blog: http://burtonator.wordpress.com
… or check out my Google+ profile
<https://plus.google.com/102718274791889610666/posts>
<http://spinn3r.com>

Reply via email to