reifydb-rql 0.4.9

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 primary key pk_users on test::users {id}'
---
> Line 1:
>   [  0] Keyword(Create)
>   [  1] Keyword(Primary)
>   [  2] Keyword(Key)
>   [  3] Identifier("pk_users")
>   [  4] Keyword(On)
>   [  5] Identifier("test")
>   [  6] Operator(DoubleColon)
>   [  7] Identifier("users")
>   [  8] Operator(OpenCurly)
>   [  9] Identifier("id")
>   [ 10] Operator(CloseCurly)
>
>