Package net.snowflake.client.jdbc
Class MatDesc
- java.lang.Object
-
- net.snowflake.client.jdbc.MatDesc
-
public class MatDesc extends Object
A class to handle S3 material descriptor metadata entries (matdesc).- Author:
- ffunke
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_KEY_SIZE
If key size is not explicitly specified, assume DEFAULT_KEY_SIZEstatic String
KEY_SIZE
MatDesc key for the length of the key in bitsstatic String
QUERY_ID
MatDesc key for query IDstatic String
SMK_ID
MatDesc key for stage master key ID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getKeySize()
String
getQueryId()
long
getSmkId()
static MatDesc
parse(String matdesc)
Try to parse the material descriptor string.String
toString()
-
-
-
Field Detail
-
QUERY_ID
public static String QUERY_ID
MatDesc key for query ID
-
SMK_ID
public static String SMK_ID
MatDesc key for stage master key ID
-
KEY_SIZE
public static String KEY_SIZE
MatDesc key for the length of the key in bits
-
DEFAULT_KEY_SIZE
public static int DEFAULT_KEY_SIZE
If key size is not explicitly specified, assume DEFAULT_KEY_SIZE
-
-