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

Nested Struct Access #2

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Conversation

goldmedal
Copy link
Owner

@goldmedal goldmedal commented Dec 26, 2024

Known issue

External error: query failed: DataFusion error: This feature is not implemented: Unsupported ast node in sqltorel: CompositeAccess { expr: Value(Number("0", false)), key: Ident { value: "as", quote_style: None, span: Span(Location(0,0)..Location(0,0)) } }
[SQL] select .0 as c1, 0. as c2, 0000. as c3, 00000.00 as c4
at test_files/options.slt:142

External error: statement failed: DataFusion error: SQL error: ParserError("Expected: identifier, found: ,")
[SQL] CREATE TABLE test_nullable_float(
    c1 float,
    c2 double
    ) AS VALUES
    (-1.0, -1.0),
    (1.0, 1.0), 
    (NULL, NULL),
    (0., 0.),
    ('NaN'::double, 'NaN'::double);
at test_files/math.slt:360

External error: query failed: DataFusion error: This feature is not implemented: Unsupported ast node in sqltorel: CompositeAccess { expr: Value(Number("0", false)), key: Ident { value: "e", quote_style: None, span: Span(Location(0,0)..Location(0,0)) } }
[SQL] SELECT 0e0 AS c1, 0.e-0 AS c2, -.0e+0 AS c3, 00.00e-00 AS c4
at test_files/scalar.slt:1570

@goldmedal goldmedal closed this Dec 26, 2024
@goldmedal goldmedal reopened this Dec 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant