소스 검색

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