-
Notifications
You must be signed in to change notification settings - Fork 90
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
Support the UUID Column Type #66
Conversation
Add UUID type
dataparser.go
Outdated
@@ -399,7 +399,7 @@ func newDataParser(t *TypeDesc, unquote bool) (DataParser, error) { | |||
return &floatParser{32}, nil | |||
case "Float64": | |||
return &floatParser{64}, nil | |||
case "String", "Enum8", "Enum16": | |||
case "String", "Enum8", "Enum16", "UUID": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
LGTM, Please resolve conflicts with master and I will merge this PR |
@bgaifullin Branch should be up to date and mergeable - not sure what you mean? |
Github shows this message "This branch cannot be rebased due to conflicts". |
Seems like it was some glitch with github. |
No description provided.