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
+29
View File
@@ -0,0 +1,29 @@
program_id: KYU06UPD
db_type: SQLite
db_name: SALARY.db
db_tables:
- name: SALARY_RESULTS
columns:
- name: EMP_ID
type: CHAR(8)
primary_key: true
- name: YEAR_MONTH
type: CHAR(6)
primary_key: true
- name: GROSS_PAYMENT
type: DECIMAL(9,0)
- name: INCOME_TAX
type: DECIMAL(9,0)
- name: INSURANCE
type: DECIMAL(9,0)
- name: RESIDENT_TAX
type: DECIMAL(9,0)
- name: NET_PAYMENT
type: DECIMAL(9,0)
- name: UPDATED_AT
type: TIMESTAMP
subprograms:
- SUB02MSG
- SUB03END