If I have AutoRemoveColumns in operation and I do something like
my $select_rs = $rs->search( {}, {
select => '...'
})
it generates sql which behaves as if I had done '+select' as the option. This is an issue when for example I want to do $rs->update({ foo => $select_rs->as_query }).
If I have AutoRemoveColumns in operation and I do something like
it generates sql which behaves as if I had done
'+select'
as the option. This is an issue when for example I want to do$rs->update({ foo => $select_rs->as_query })
.