[Bast-commits] r5695 - in DBIx-Class/0.08/trunk/lib/DBIx/Class: .
Manual
robkinyon at dev.catalyst.perl.org
robkinyon at dev.catalyst.perl.org
Fri Mar 6 17:55:53 GMT 2009
Author: robkinyon
Date: 2009-03-06 17:55:52 +0000 (Fri, 06 Mar 2009)
New Revision: 5695
Modified:
DBIx-Class/0.08/trunk/lib/DBIx/Class/Manual/Cookbook.pod
DBIx-Class/0.08/trunk/lib/DBIx/Class/ResultSet.pm
DBIx-Class/0.08/trunk/lib/DBIx/Class/ResultSetColumn.pm
Log:
Changed how the EXPERIMENTAL tag for subqueries and as_query is noted
Modified: DBIx-Class/0.08/trunk/lib/DBIx/Class/Manual/Cookbook.pod
===================================================================
--- DBIx-Class/0.08/trunk/lib/DBIx/Class/Manual/Cookbook.pod 2009-03-06 15:44:58 UTC (rev 5694)
+++ DBIx-Class/0.08/trunk/lib/DBIx/Class/Manual/Cookbook.pod 2009-03-06 17:55:52 UTC (rev 5695)
@@ -295,7 +295,7 @@
are in any way unsure about the use of the attributes above (C< join
>, C< select >, C< as > and C< group_by >).
-=head2 Subqueries
+=head2 Subqueries (EXPERIMENTAL)
You can write subqueries relatively easily in DBIC.
@@ -343,10 +343,6 @@
WHERE artistid = me.artistid
)
-=head3 EXPERIMENTAL
-
-Please note that subqueries are considered an experimental feature.
-
=head2 Predefined searches
You can write your own L<DBIx::Class::ResultSet> class by inheriting from it
Modified: DBIx-Class/0.08/trunk/lib/DBIx/Class/ResultSet.pm
===================================================================
--- DBIx-Class/0.08/trunk/lib/DBIx/Class/ResultSet.pm 2009-03-06 15:44:58 UTC (rev 5694)
+++ DBIx-Class/0.08/trunk/lib/DBIx/Class/ResultSet.pm 2009-03-06 17:55:52 UTC (rev 5695)
@@ -1807,7 +1807,7 @@
return \%unaliased;
}
-=head2 as_query
+=head2 as_query (EXPERIMENTAL)
=over 4
@@ -1821,8 +1821,6 @@
This is generally used as the RHS for a subquery.
-B<NOTE>: This feature is still experimental.
-
=cut
sub as_query { return shift->cursor->as_query(@_) }
Modified: DBIx-Class/0.08/trunk/lib/DBIx/Class/ResultSetColumn.pm
===================================================================
--- DBIx-Class/0.08/trunk/lib/DBIx/Class/ResultSetColumn.pm 2009-03-06 15:44:58 UTC (rev 5694)
+++ DBIx-Class/0.08/trunk/lib/DBIx/Class/ResultSetColumn.pm 2009-03-06 17:55:52 UTC (rev 5695)
@@ -54,7 +54,7 @@
return $new;
}
-=head2 as_query
+=head2 as_query (EXPERIMENTAL)
=over 4
@@ -68,8 +68,6 @@
This is generally used as the RHS for a subquery.
-B<NOTE>: This feature is still experimental.
-
=cut
sub as_query { return shift->_resultset->as_query }
More information about the Bast-commits
mailing list