5 lines
171 B
MySQL
5 lines
171 B
MySQL
|
|
-- Do-not-port-yet list
|
||
|
|
SELECT source_file, class_name, symbol_name, tag, rationale
|
||
|
|
FROM symbols
|
||
|
|
WHERE tag IN ('GLUE', 'PLATFORM')
|
||
|
|
ORDER BY tag, source_file, line_number;
|