Преглед изворни кода

handle tinyint fields in getCassandraBaseType (#1255)

Vincent Rischmann пре 6 година
родитељ
комит
30de9a1866
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2 0
      helpers.go

+ 2 - 0
helpers.go

@@ -91,6 +91,8 @@ func getCassandraBaseType(name string) Type {
 		return TypeFloat
 	case "int":
 		return TypeInt
+	case "tinyint":
+		return TypeTinyInt
 	case "timestamp":
 		return TypeTimestamp
 	case "uuid":