Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Decimal type #57

Closed
KKould opened this issue Sep 14, 2023 · 1 comment · Fixed by #66
Closed

Support Decimal type #57

KKould opened this issue Sep 14, 2023 · 1 comment · Fixed by #66
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@KKould
Copy link
Member

KKould commented Sep 14, 2023

Feature Request

TPC-H:

CREATE TABLE lineitem (
    l_orderkey INT,
    l_partkey INT,
    l_suppkey INT,
    l_linenumber INT,
    l_quantity DECIMAL(15,2),
    l_extendedprice DECIMAL(15,2),
    l_discount DECIMAL(15,2),
    l_tax DECIMAL(15,2),
    l_returnflag CHAR(1),
    l_linestatus CHAR(1),
    l_shipdate DATE,
    l_commitdate DATE,
    l_receiptdate DATE,
    l_shipinstruct CHAR(25),
    l_shipmode CHAR(10),
    l_comment VARCHAR(44),
    PRIMARY KEY (l_orderkey, l_linenumber)
);
@KKould KKould added the enhancement New feature or request label Sep 14, 2023
@KKould KKould added this to the v0.1 milestone Sep 14, 2023
@KKould
Copy link
Member Author

KKould commented Sep 15, 2023

Tips: Decimal needs to support unary/binary operators

@KKould KKould linked a pull request Sep 27, 2023 that will close this issue
9 tasks
@KKould KKould closed this as completed Sep 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants