Get full qualifying column name in Cassandra

149 views Asked by At

Below is my sample database schema in Cassandra.

CREATE TYPE TypeAddress(
    Column1 INT,
    Column2 INT,
    Column3 INT
);

CREATE TABLE TablePersonInfo(
    ColumnA INT,
    ColumnB INT,
    TypeAddress_ FROZEN<TypeAddress>
);

CREATE KeySpace KSName;

I want full qualifying names for the columns.

e.g. 
KSName.TablePersonInfo.TypeAddress.Column1
KSName.TablePersonInfo.TypeAddress.Column2

Any help is appreciated.

Thanks in Advance.

0

There are 0 answers