瀏覽代碼

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":