Skip to content

Commit

Permalink
fixes bug 1140937 - write code_id and code_file to missing symbols (m…
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Bengtsson authored and adngdb committed Jun 8, 2016
1 parent 7fe6593 commit ce07475
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/crons/cron_missing_symbols.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ OUTPUT_DIR="/mnt/crashanalysis/crash_analysis/${OUTPUT_DATE}"
OUTPUT_FILE="${OUTPUT_DATE}-missing-symbols.txt"
read -d '' SQL << EOF
COPY
(SELECT debug_file, debug_id
(SELECT debug_file, debug_id, code_file, code_id
FROM missing_symbols WHERE
date_processed='${OUTPUT_DATE}'
AND debug_file != ''
AND debug_id != ''
GROUP BY debug_file, debug_id
GROUP BY debug_file, debug_id, code_file, code_id
)
TO STDOUT WITH CSV HEADER
EOF
Expand Down

0 comments on commit ce07475

Please sign in to comment.