Fernando Correa de Oliveira
Fernando Correa de Oliveira
now we have `is view` and `is virtual-view`. Committed.
@jonathanstowe please, close this issue if the implemented change is enough.
Thanks!
A simple solution for this problem (the .^create inside a red-do :transaction) could be .^create be aware it's inside a transaction already and don't create a transaction for itself. A...
Maybe generalising that a bit would also be good... maybe we could make all transaction calls set a dynamic variable and all transaction calls be ignored if that dynamic variable...
I'm working on it now, and for now I have this: ``` ➜ Red git:(master) ✗ raku -I. -MRed -e ' model Bla { has $.id is serial; has $.value...
I just committed a new branch (to-many-prefetch) (https://github.com/FCO/Red/pull/563) with a PoC for SQLite doing prefetch the 2nd way. I'm testing it with: ``` ➜ Red git:(to-many-prefetch) ✗ raku -I. -MRed...
Maybe that may be an option for for #25
Now we can set the prefetches on a ResultSeq using the prefetch method: ``` ➜ Red git:(to-many-prefetch) ✗ raku -I. -MRed -e ' my $*RED-FALLBACK = False; model Bla {...
(not recursive, yet...)