projects
/
working
/
Evergreen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03dc37c
)
JBAS-1803 Drop sample rec export count from 750 to 500
author
Bill Erickson
<berickxx@gmail.com>
Fri, 30 Mar 2018 18:21:27 +0000
(11:21 -0700)
committer
Bill Erickson
<berickxx@gmail.com>
Thu, 21 Mar 2019 19:46:23 +0000
(15:46 -0400)
To speed up building dev machines.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
KCLS/sql/sample-data/tools/export-dev-data.sh
patch
|
blob
|
history
diff --git
a/KCLS/sql/sample-data/tools/export-dev-data.sh
b/KCLS/sql/sample-data/tools/export-dev-data.sh
index
81194f1
..
39ab1c2
100755
(executable)
--- 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
75
0
+ GROUP BY 2 ORDER BY 1 DESC LIMIT
50
0
) counter
ORDER BY counter.record;