baptistejamin opened a new issue, #3224: URL: https://github.com/apache/kvrocks/issues/3224
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/kvrocks/issues) and found no similar issues. ### Version Hello! Currently trying to migrate a project from Redis to KVRocks. The following command works with redis, but not with KVRocks: ``` FT.CREATE checkpoints ON JSON PREFIX 1 checkpoint: SCHEMA $.thread_id AS thread_id TAG $.checkpoint_ns AS checkpoint_ns TAG $.checkpoint_id AS checkpoint_id TAG $.parent_checkpoint_id AS parent_checkpoint_id TAG $.checkpoint_ts AS checkpoint_ts NUMERIC $.has_writes AS has_writes TAG $.source AS source TAG $.step AS step NUMERIC ``` It ends up with: ``` ERR expect field type TAG, NUMERIC or VECTOR ``` ### Minimal reproduce step ``` redis-cli -h 127.0.0.1 -p 6666 ``` ``` FT.CREATE checkpoints ON JSON PREFIX 1 checkpoint: SCHEMA $.thread_id AS thread_id TAG $.checkpoint_ns AS checkpoint_ns TAG $.checkpoint_id AS checkpoint_id TAG $.parent_checkpoint_id AS parent_checkpoint_id TAG $.checkpoint_ts AS checkpoint_ts NUMERIC $.has_writes AS has_writes TAG $.source AS source TAG $.step AS step NUMERIC (error) ERR expect field type TAG, NUMERIC or VECTOR ``` ### What did you expect to see? OK ### What did you see instead? ERR expect field type TAG, NUMERIC or VECTOR ### Anything Else? _No response_ ### Are you willing to submit a PR? - [ ] I'm willing to submit a PR! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
