From: Matt S Trout Date: Mon, 7 Oct 2019 01:44:44 +0000 (+0000) Subject: remove obsolete thing that never worked X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FQ-Branch.git;a=commitdiff_plain;h=cf5b7ab163f8ac123ebc9bb1156e79646cd5bd2f remove obsolete thing that never worked --- diff --git a/examples/dbicbits b/examples/dbicbits index 7e4a6f0..72815d1 100644 --- a/examples/dbicbits +++ b/examples/dbicbits @@ -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"; diff --git a/lib/SQL/Abstract/Plugin/BangOverrides.pm b/lib/SQL/Abstract/Plugin/BangOverrides.pm index 9ef6a61..646a70a 100644 --- a/lib/SQL/Abstract/Plugin/BangOverrides.pm +++ b/lib/SQL/Abstract/Plugin/BangOverrides.pm @@ -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 ))