6 lines
203 B
MySQL
6 lines
203 B
MySQL
|
|
-- Things needing your review
|
||
|
|
SELECT source_file, class_name, symbol_name, line_number, tag, rationale
|
||
|
|
FROM symbols
|
||
|
|
WHERE status = 'NEEDS_REVIEW'
|
||
|
|
OR tag = 'UNKNOWN'
|
||
|
|
ORDER BY source_file, line_number;
|