Mahlet-Inc / Mahlet-Inc/hobbits
Kaitai Struct parsed output table missing 'value' column for some KSY files
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 751
- Forks
- 49
- PR merge metrics
- No merged PRs in 30d
Description
Take this ksy for example:
```yaml
meta:
id: test
seq:
- id: test
type: test
types:
test:
seq:
- id: t
type: u1
```
The parsed output table only contains columns 1 and 2, not the third 'value' column.

Modifying the ksy by adding a field which uses a builtin type at the start of the sequence fixes the issue
```yaml
meta:
id: test
seq:
- id: test1
type: u1
- id: test
type: test
types:
test:
seq:
- id: t
type: u1
```

Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the missing-column behavior with the first KSY example, then compare it with the modified example that includes a builtin field. Trace the parsed output table entry point and determine why the value column is omitted; done means both examples display columns 1, 2, and value.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- data-visualization, frontend
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100