reifydb-rql 0.5.6

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

query 'CALL rql::tokenize("create primary key pk_users on test::users {id}")'
---
> +-------+--------+----------+--------------+---------------+
> |  idx  |  line  |  column  |     kind     |     value     |
> +-------+--------+----------+--------------+---------------+
> |   0   |   1    |    1     |   Keyword    |    Create     |
> |   1   |   1    |    8     |   Keyword    |    Primary    |
> |   2   |   1    |    16    |   Keyword    |      Key      |
> |   3   |   1    |    20    |  Identifier  |   pk_users    |
> |   4   |   1    |    29    |   Keyword    |      On       |
> |   5   |   1    |    32    |  Identifier  |     test      |
> |   6   |   1    |    36    |   Operator   |  DoubleColon  |
> |   7   |   1    |    38    |  Identifier  |     users     |
> |   8   |   1    |    44    |   Operator   |   OpenCurly   |
> |   9   |   1    |    45    |  Identifier  |      id       |
> |  10   |   1    |    47    |   Operator   |  CloseCurly   |
> +-------+--------+----------+--------------+---------------+
>