You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
A clear and concise description of what the bug is.
I was trying to insert in UDT field with frozen, but every time its throwing error. To Reproduce
Steps to reproduce the behavior:
Create a keyspace abc
Create TYPE
CREATE TYPE basic_info (
birthday timestamp,
nationality text,
weight text,
height text
);
Describe the bug
A clear and concise description of what the bug is.
I was trying to insert in UDT field with frozen, but every time its throwing error.
To Reproduce
Steps to reproduce the behavior:
Create a keyspace abc
Create TYPE
CREATE TYPE basic_info (
birthday timestamp,
nationality text,
weight text,
height text
);
Create table
CREATE TABLE cycling.cyclist_stats (
id uuid PRIMARY KEY,
lastname text,
basics FROZEN<basic_info>
);
INSERT INTO cyclist_stats (id, lastname, basics) VALUES (
e7ae5cf3-d358-4d99-b900-85902fda9bb0,
'FRAME',
{ birthday : '1993-06-18', nationality : 'New Zealand', weight : null, height : null }
);
Expected behavior
It should get inserted because example is from datax.
Screenshots
NA
System info (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: