Re: world_x
Posted by: Andrzej Religa
Date: August 26, 2016 05:51AM

Hi,

When creating the table for CountryInfo the world_x script mimics what createCollection() methods does underneath.

CREATE TABLE `CountryInfo` (
`doc` json DEFAULT NULL,
`_id` varchar(32) GENERATED ALWAYS AS (json_unquote(json_extract(doc, '$._id'))) STORED PRIMARY KEY
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

If you want to create the collection manually via SQL, you need your table structure to be exactly the same (meaning the same field names and types).
Still the preferred way would be just use createCollection() if possible.

--
Regards,
Andrzej Religa
MySQL Developer Tools

Options: ReplyQuote


Subject
Views
Written By
Posted
1396
August 25, 2016 03:51AM
Re: world_x
944
August 26, 2016 05:51AM
947
August 26, 2016 08:43AM
894
August 26, 2016 01:18PM
838
August 28, 2016 04:24AM
786
August 28, 2016 08:45AM
821
August 28, 2016 10:40AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.