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

Spaces are supported in column names for COLUMN tables #14722

Open
pnv1 opened this issue Feb 18, 2025 · 1 comment · May be fixed by #15453
Open

Spaces are supported in column names for COLUMN tables #14722

pnv1 opened this issue Feb 18, 2025 · 1 comment · May be fixed by #15453
Assignees
Labels
area/cs bug Something isn't working load/olap Software work with external data or with manual queries

Comments

@pnv1
Copy link
Collaborator

pnv1 commented Feb 18, 2025

Also slashes. Probably some other such symbols.
They are not supported in ROW tables and shouldn't be in COLUMN tables as well.

Example:

CREATE TABLE `/olap-testing-vla-common3/kikimr/slonn/database-1/pnv1/all_stock_data2` (
    `Date` Text NOT NULL,
    `Ticker` Text NOT NULL,
    `Open` Double,
    `High` Double,
    `Low` Double,
    `Close` Double,
    `Volume` Double NOT NULL,
    `Dividends` Double NOT NULL,
    `Stock Splits` Text NOT NULL,
    PRIMARY KEY (`Date`, `Ticker`)
)
WITH (
    STORE = COLUMN
);

Executes successfully, but fails after replacing COLUMN with ROW.

@pnv1 pnv1 added bug Something isn't working load/olap Software work with external data or with manual queries labels Feb 18, 2025
@Emgariko Emgariko self-assigned this Mar 4, 2025
@Emgariko
Copy link
Collaborator

Emgariko commented Mar 6, 2025

Column name validation behavior should be consistent for both row and column tables.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/cs bug Something isn't working load/olap Software work with external data or with manual queries
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants