-
-
Notifications
You must be signed in to change notification settings - Fork 168
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
add some value types #129
add some value types #129
Conversation
v_integer integer NOT NULL, | ||
v_text text, | ||
v_smallmoney smallmoney, | ||
v_money money, | ||
v_datetimeoffset datetimeoffset(1), | ||
v_datetime2 datetime2, | ||
v_smalldatetime smalldatetime, | ||
v_nchar nchar(30), | ||
v_nvarchar nvarchar(30), | ||
v_ntext ntext |
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.
As you can see in this diff on GitHub, the indentation is inconsistent. Please consider checking your code before submitting a PR next time.
v_integer integer NOT NULL, | |
v_text text, | |
v_smallmoney smallmoney, | |
v_money money, | |
v_datetimeoffset datetimeoffset(1), | |
v_datetime2 datetime2, | |
v_smalldatetime smalldatetime, | |
v_nchar nchar(30), | |
v_nvarchar nvarchar(30), | |
v_ntext ntext | |
v_integer integer NOT NULL, | |
v_text text, | |
v_smallmoney smallmoney, | |
v_money money, | |
v_datetimeoffset datetimeoffset(1), | |
v_datetime2 datetime2, | |
v_smalldatetime smalldatetime, | |
v_nchar nchar(30), | |
v_nvarchar nvarchar(30), | |
v_ntext ntext |
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.
Sorry for my carelessness, I'll be careful next time.
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.
Thanks!
I extended the syntax to parse the following data types.