MySQL Forums
Forum List  »  NDB clusters

Re: Maximum number of database objects
Posted by: Mikael Ronström
Date: July 08, 2021 08:34AM

Tables are database objects and so are indexes.
So declaring a table like:
CREATE TABLE t1 (a int primary key) engine=ndb;
will use 1 object for the t1 table and one for the ordered
index on the a column.
However declaring the table as:
CREATE TABLE t1 (a int primary key using hash) engine = ndb;
will only use 1 database object.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Maximum number of database objects
448
July 08, 2021 08:34AM


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.