reifydb-rql 0.4.12

ReifyDB Query Language (RQL) parser and AST
Documentation
# Copyright (c) reifydb.com 2025
# This file is licensed under the Apache-2.0, see license.md file

tokenize 'create index idx_status on test::users {created_at:desc, status:asc}'
---
> Line 1:
>   [  0] Keyword(Create)
>   [  1] Keyword(Index)
>   [  2] Identifier("idx_status")
>   [  3] Keyword(On)
>   [  4] Identifier("test")
>   [  5] Operator(DoubleColon)
>   [  6] Identifier("users")
>   [  7] Operator(OpenCurly)
>   [  8] Identifier("created_at")
>   [  9] Operator(Colon)
>   [ 10] Keyword(Desc)
>   [ 11] Separator(Comma)
>   [ 12] Identifier("status")
>   [ 13] Operator(Colon)
>   [ 14] Keyword(Asc)
>   [ 15] Operator(CloseCurly)
>
>