These shortucuts allows to write shorter more straightforward code.
It allows to write:
```
clusters.InsertQuery(session).BindStruct(r).ExecRelease()
```
instead of:
```
tmt, names := clusters.Insert()
session.Query(stmt,names).BindStruct(r).ExecRelease()
```
When table is used with SelectBuilder it triggers data race on Where()
condition usage.
This change copies underlining slices on table creation to allow safe
concurrent usage of the table.