ble-reticulum/migration/sql/phase_1_candidates.sql

6 lines
185 B
SQL

-- Phase-1 C++ candidates
SELECT source_file, class_name, symbol_name, line_number, rationale
FROM symbols
WHERE tag = 'CORE'
AND cpp_candidate = 1
ORDER BY source_file, line_number;