Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@ public enum TypeEnum {
TIMESTAMP,
DATE,
BLOB,
STRING
STRING,
FUNCTION
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ public static Type getType(TSDataType tsDataType) {
}
}

/**
* @deprecated This function will be removed.
*/
@Deprecated
public static Type getType(TypeEnum typeEnum) {
switch (typeEnum) {
case INT32:
Expand Down
Loading