Skip to content

Commit de959cc

Browse files
Update README and add JSON typed path test queries
- Update README to note Dynamic/JSON support is not 100% yet - Add JSON test queries with typed paths 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 060605d commit de959cc

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A web-based tool for visualizing ClickHouse RowBinary data, similar to ImHex. Fe
66

77
## Features
88

9-
- Format support: RowBinary and Native, modular system allows adding more
9+
- **Format support**: RowBinary and Native (Dynamic and JSON are not 100% yet), modular system allows adding more
1010
- **Hex Viewer**: Virtual-scrolling hex display with ASCII column
1111
- **AST Tree**: Collapsible tree view showing decoded structure
1212
- **Interactive Highlighting**: Selecting a node in the tree highlights corresponding bytes in the hex view (and vice versa)

all_types_query.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ SELECT
133133
-- ===========================================
134134
'{"name": "test", "value": 42}'::JSON as json_simple,
135135
'{"id": 1, "nested": {"x": 10, "y": 20}}'::JSON as json_nested,
136+
'{"id": 1, "nested": {"x": 10, "y": 20}}'::JSON(a Int32) as json_partially_typed,
137+
'{"id": 1 }'::JSON(a Int32) as json_fully_typed,
138+
'{"ip": "127.0.0.1"}'::JSON(ip IPv4) as json_ipv4,
136139

137140
-- ===========================================
138141
-- GEO TYPES

0 commit comments

Comments
 (0)