Hi,

I'd like to know if there's a "public API" way of merging two datasets. 
Something like, having the following:

```
ds1 = db[table1].where(a: 1)
ds2 = db[table2].where(b: 2)

# I'd like
ds1.merge(ds2) #=> would merge as where(a: 1, b: 2)
# I'm working around it by:
ds1.where(ds2.opts[:where])
```


-- 
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sequel-talk+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sequel-talk/9c715d02-8064-4829-8c64-924fc5449c12n%40googlegroups.com.

Reply via email to