Skip to content

Commit c120a8b

Browse files
committedJul 20, 2012
Only transfer data that's being used, to reduce loading and speed things up.

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎sbin/findBrokenAssets.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ sub progress {
7272

7373
# Order by lineage to put corrupt parents before corrupt children
7474
# Join assetData to get all asset and assetData
75-
my $iterator_sql = "SELECT * FROM asset LEFT JOIN assetData USING ( assetId ) ";
75+
my $iterator_sql = "SELECT assetId, className, revisionDate, parentId FROM asset LEFT JOIN assetData USING ( assetId ) ";
7676
my $sql_args = [];
7777
if ($op_assetId) {
7878
my $asset_selector = 'where assetId = ? ';

0 commit comments

Comments
 (0)
Please sign in to comment.