-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Standardize the separator in name #10364
Comments
I agree this makes sense. Thank you |
Also why do we have all of these which are slightly different? It's really unmanageable:
|
I'm working on this naming issue #11782 |
Maybe we can just use the |
Is your feature request related to a problem or challenge?
While working on replacing GetFieldAccess with
get_field
function, I got the name checking error that due to the mismatch of separator in creating name. I found that most of the name built with single comma and space, so I think we should switch others to this format.join(", ")
.Error is like
I got one with
t2.struct(t1.time,t1.load1,t1.load2,t1.host), Utf8("c3")
and anothert2.struct(t1.time,t1.load1,t1.load2,t1.host),Utf8("c3")
. That is why I think we should fix the separator.Since the change is quite large, I would like to wait for more comment.
Describe the solution you'd like
No response
Describe alternatives you've considered
No response
Additional context
No response
You can find the error here with
cargo test --test sqllogictests -- expr
. Although, it is not on the main branch, but I think most of the changes are unrelated to the name checking issue.The text was updated successfully, but these errors were encountered: