Add Go report card.

This commit is contained in:
go-jet 2019-07-18 18:51:13 +02:00
parent 556578cec9
commit b927769d5a
4 changed files with 7 additions and 12 deletions

View file

@ -348,12 +348,12 @@ func TO_DATE(dateStr, format StringExpression) DateExpression {
return newDateFunc("TO_DATE", dateStr, format)
}
// TO_NUMBER converst string to numeric using format
// TO_NUMBER converts string to numeric using format
func TO_NUMBER(floatStr, format StringExpression) FloatExpression {
return newFloatFunc("TO_NUMBER", floatStr, format)
}
// TO_TIMESTAMP converst string to time stamp with time zone using format
// TO_TIMESTAMP converts string to time stamp with time zone using format
func TO_TIMESTAMP(timestampzStr, format StringExpression) TimestampzExpression {
return newTimestampzFunc("TO_TIMESTAMP", timestampzStr, format)
}