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

Assert column names for partial views #121

Merged
merged 2 commits into from
Mar 18, 2025
Merged

Assert column names for partial views #121

merged 2 commits into from
Mar 18, 2025

Conversation

jogrogan
Copy link
Collaborator

@jogrogan jogrogan commented Mar 17, 2025

Adds validation for column names when doing a partial view (i.e. view on table that already exists).

Tests:

  • New view, column names don't matter, no validation done
0: Hoptimator> create or replace materialized view venice."new-view" as select "KEY" as "KEY_id", "VALUE" as stringField from kafka."existing-topic-1";
No rows affected (0.517 seconds)
  • Valid column names for partial view
0: Hoptimator> create or replace materialized view venice."test-store$my-view" as select "KEY" as "KEY_id", "VALUE" as "stringField" from kafka."existing-topic-1";
No rows affected (1.684 seconds)
  • Invalid column name for partial view
0: Hoptimator> create or replace materialized view venice."test-store$my-view" as select "KEY" as "KEY_id", "VALUE" as stringField from kafka."existing-topic-1";
Error: Error while executing SQL "create or replace materialized view venice."test-store$my-view" as select "KEY" as "KEY_id", "VALUE" as stringField from kafka."existing-topic-1"": Cannot CREATE MATERIALIZED VIEW in VENICE: Field STRINGFIELD not found in sink schema (state=,code=0)

0: Hoptimator> create or replace materialized view "VENICE"."test-store-1$view" ("KEY_id", intField) as select "KEY_id", "stringField" from "VENICE"."test-store";
Error: Error while executing SQL "create or replace materialized view "VENICE"."test-store-1$view" ("KEY_id", intField) as select "KEY_id", "stringField" from "VENICE"."test-store"": Cannot CREATE MATERIALIZED VIEW in VENICE: Field INTFIELD not found in sink schema (state=,code=0)

Copy link
Collaborator

@ryannedolan ryannedolan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice! Does it make sense to check that the types match as well? The types technically don't need to match exactly, but the sink should be assignable from the source. Calcite has a function somewhere for that.

@jogrogan
Copy link
Collaborator Author

Nice! Does it make sense to check that the types match as well? The types technically don't need to match exactly, but the sink should be assignable from the source. Calcite has a function somewhere for that.

Yea I couldn't find an easy way to test the types of a subset of fields. You can only test all the fields between two rowtypes

@jogrogan jogrogan merged commit 39422cb into main Mar 18, 2025
1 check passed
@jogrogan jogrogan deleted the jogrogan/colVerify branch March 18, 2025 16:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants