feat: SQL between/hostvar-key alignment, class-condition parsing, gcov merge across scenario runs

This commit is contained in:
hangshuo652
2026-08-09 17:43:00 +08:00
parent f331c8fa2a
commit 273a3f8211
31 changed files with 3789 additions and 272 deletions
+32
View File
@@ -0,0 +1,32 @@
program_id: SHA03MNP
db_type: SQLite
db_name: INSURANCEDB.db
db_tables:
- name: INSURANCE_RATES
columns:
- name: GRADE_CODE
type: CHAR(2)
primary_key: true
- name: MONTHLY_FROM
type: DECIMAL(9,0)
- name: MONTHLY_TO
type: DECIMAL(9,0)
- name: HEALTH_RATE
type: DECIMAL(7,6)
- name: PENSION_RATE
type: DECIMAL(7,6)
- name: EFFECTIVE_FROM
type: CHAR(6)
- name: EFFECTIVE_TO
type: CHAR(6)
runs:
- id: normal
- id: rates_open_fail
drop_tables: [INSURANCE_RATES]
inject_duplicate_pk: false
subprograms:
- SUB01DAT
- SUB02MSG