Skip to content

Support creating unsigned int types from SQL #575

@Ted-Jiang

Description

@Ted-Jiang

From apache/datafusion#3146 (comment)

We should support creating unsigned int types from SQL.

For now seems all int are signed

❯ select 1;
+----------+
| Int64(1) |
+----------+
| 1        |
+----------+
1 row in set. Query took 0.004 seconds.
❯ select 10000;
+--------------+
| Int64(10000) |
+--------------+
| 10000        |
+--------------+
1 row in set. Query took 0.002 seconds.
❯ select -1;
+-----------+
| Int64(-1) |
+-----------+
| -1        |
+-----------+
1 row in set. Query took 0.001 seconds.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions