DATATYPES IN CQL (2.0)

Share via:
DATATYPES IN CQL (2.0)

CUSTOM DATA TYPE:

A Custom datatype is defined by every Java class that extends the server-side Abstract Type class and can be loaded by Cassandra is called a custom type; as a result, it should be included in the CLASSPATH of every node that is running Cassandra. When used as a clustering column, that class will specify which values are appropriate for the type and how the time sorting works. A custom type’s value can be entered using the blob literal syntax and is equivalent to a blob for all other purposes.

When hex is a hexadecimal character, as [0-9a-fA-F], the Cassandra blob data type is used to represent a constant hexadecimal number, which is defined as 0[xX](hex)+. As an instance, 0xcafe. A blob can have a maximum size of 2 GB in theory. However, blob size is practically limited to less than 1 MB. A brief string or tiny image can be stored in a blob type.

These functions convert the native types into binary data (blob):

⦁ typeAsBlob(value)
⦁ blobAsType(value)

The typeAsBlob function accepts an argument of any native, nonblob data type that CQL supports and returns it as a blob. On the other hand, if feasible, the blobAsType function transforms a 64-bit blob input into a value of the designated data type.

Here’s an example of using bigintAsBlob:

TUPLES DATA TYPE:

Sets of typed positional fields with a fixed length are stored in tuples. Instead of using a user-defined type, use a tuple. There are more fields (32768) that a tuple can have than can be wisely employed. Usually, make a tuple consisting of a few fields.

Tuples and tuple types (where the elements can be of different kinds) are likewise supported by CQL. Tuples can be conceptualized functionally as anonymous UDTs with anonymous fields. The following define tuple types and tuple literals:

tuple_type::= TUPLE ‘<‘ cql_type( ‘,’ cql_type)* ‘>’

tuple_literal::= ‘(‘ term( ‘,’ term )* ‘)’

To declare the tuple component types in the table construction statement, use angle brackets and a comma as the delimiter. To insert tuple values into a table, enclose them in parenthesis, as demonstrated below:

A tuple is always frozen <frozen> (without requiring the frozen keyword), unlike other composite types like collections and UDTs, and it is not feasible to edit a tuple’s partial members without also updating the entire tuple. Additionally, a tuple literal must always include the same number of values as those declared in the type of which it is a tuple (some of those values may be null, but they must be identified as so explicitly).

 

Author    : Neha Kasanagottu
LinkedIn : https://www.linkedin.com/in/neha-kasanagottu-5b6802272
Thank you for giving your valuable time to read the above information. Please click here to subscribe for further updates.
KTExperts is always active on social media platforms.
Facebook  : https://www.facebook.com/ktexperts/
LinkedIn    : https://www.linkedin.com/company/ktexperts/
Twitter       : https://twitter.com/ktexpertsadmin
YouTube   :  https://www.youtube.com/c/ktexperts
Instagram  : https://www.instagram.com/knowledgesharingplatform
Share via:
Note: Please test scripts in Non Prod before trying in Production.
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...

Add Comment