remove obsolete thing that never worked
Matt S Trout [Mon, 7 Oct 2019 01:44:44 +0000 (01:44 +0000)]
examples/dbicbits
lib/SQL/Abstract/Plugin/BangOverrides.pm

index 7e4a6f0..72815d1 100644 (file)
@@ -28,8 +28,6 @@ $s->storage
 
 my $rs2 = $s->resultset('Foo')->search({
   -op => [ '=', { -ident => 'outer.y' }, { -ident => 'me.x' } ]
-}, {
-  with_recursive => [ outer => $rs->get_column('x')->as_query ],
 });
 
 warn ${$rs2->as_query}->[0]."\n";
index 9ef6a61..646a70a 100644 (file)
@@ -61,8 +61,6 @@ So, given appropriate DBIC setup:
 
   my $rs2 = $s->resultset('Foo')->search({
     -op => [ '=', { -ident => 'outer.y' }, { -ident => 'me.x' } ]
-  }, {
-    with_recursive => [ outer => $rs->get_column('x')->as_query ],
   });
   # (SELECT me.x, me.y, me.z FROM foo me WHERE ( outer.y = me.x ))