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
In case this helps someone else, here's an additional example of doctoring that might be needed before recreating content with dumped CQL: [my_type(initiator_id=u'328195', reason_id=None, comment=u'No comment yet', date=datetime.datetime(2018, 9, 21, 19, 19, 14, 465000), action=u'SUBMIT')]
To reimport: [{initiator_id: '328195', reason_id:NULL, comment:'No comment yet', date: '2018-9-21T19:19:14.465', action:'SUBMIT'}]
For example, a UDT Point{x int; y int} is encoded as:
"Point(x=1.234, y=3.231)"
However, for it to be CQL compliant, it should be encoded as:
"{x: 1.234, y=3.231}"
The text was updated successfully, but these errors were encountered: