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

There is no supertype for types String, UUID because some of them are String/FixedString and some of them are not #41

Closed
wilsonliu78 opened this issue Jan 12, 2022 · 2 comments

Comments

@wilsonliu78
Copy link

DB::Exception: There is no supertype for types String, UUID because some of them are String/FixedString and some of them are not
Octonica.ClickHouseClient.Exceptions.ClickHouseServerException: DB::Exception: There is no supertype for types String, UUID because some of them are String/FixedString and some of them are not

@SergeyMirvoda
Copy link
Contributor

Hi!
Looks like an error is in your SQL code.
Something like this ClickHouse/ClickHouse#27813
Can you execute SQL code via clickhouse CLI client?

@wilsonliu78
Copy link
Author

thanks your reply , i found cause

column datatype is string, query parameter use Guid , it will failed!

failed:
{ "UserId", new Guid("ad49f169-e607-11eb-91a7-42a68d1dd535")},
{ "TenantId",new Guid("8fad140e-67b4-11ec-b6d3-2a03e8deecca")}

success:
{ "UserId", "ad49f169-e607-11eb-91a7-42a68d1dd535"},
{ "TenantId","8fad140e-67b4-11ec-b6d3-2a03e8deecca"},

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

No branches or pull requests

2 participants