From 13e554db2ae316171e81a42efeebde55fdfdac2a Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 30 Mar 2018 11:21:27 -0700 Subject: [PATCH] JBAS-1803 Drop sample rec export count from 750 to 500 To speed up building dev machines. Signed-off-by: Bill Erickson --- KCLS/sql/sample-data/tools/export-dev-data.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KCLS/sql/sample-data/tools/export-dev-data.sh b/KCLS/sql/sample-data/tools/export-dev-data.sh index 81194f1822..39ab1c29f5 100755 --- a/KCLS/sql/sample-data/tools/export-dev-data.sh +++ b/KCLS/sql/sample-data/tools/export-dev-data.sh @@ -58,7 +58,7 @@ SELECT counter.record FROM ( JOIN asset.call_number acn ON (acn.id = acp.call_number) AND NOT acp.deleted AND NOT acn.deleted AND acn.record IN (SELECT rec_id FROM records) - GROUP BY 2 ORDER BY 1 DESC LIMIT 750 + GROUP BY 2 ORDER BY 1 DESC LIMIT 500 ) counter ORDER BY counter.record; -- 2.11.0