Files
srdb/test_db_ops/users/schema.json
bourdon 6000930c40 功能:增强 Schema 系统和添加新示例
- 扩展 Schema 支持更多数据类型(Duration、URL、JSON 等)
- 优化 SSTable 编码解码性能
- 添加多个新示例程序:
  - all_types: 展示所有支持的数据类型
  - new_types: 演示新增类型的使用
  - struct_tags: 展示结构体标签功能
  - time_duration: 时间和持续时间处理示例
- 完善测试用例和文档
- 优化代码结构和错误处理
2025-10-10 02:57:36 +08:00

24 lines
471 B
JSON

{
"version": 1,
"timestamp": 1760034629,
"checksum": "e4ba64b64f64a72adabecd466a7419ffcdfc202d2b3086be4e86bab7100fcabd",
"schema": {
"Name": "users",
"Fields": [
{
"Name": "name",
"Type": 13,
"Indexed": true,
"Nullable": false,
"Comment": "用户名"
},
{
"Name": "age",
"Type": 5,
"Indexed": true,
"Nullable": false,
"Comment": "年龄"
}
]
}
}