Comments - Data limit on joins with connect tables?

10 years, 1 month ago Federico Razzoli

Probably this won't help you, but... try checking the value of sql_select_limit. If it's != 0, it is the max number of rows that can be returned by a select.

Otherwise, I'd do a simple check. If the number of rows returned by

SELECT * FROM table;

is != the result of

SELECT COUNT(*) FROM table;

it's supposed to be a bug in MariaDB or in the CONNECT engine. In this case, it would be useful if you file a bug at https://mariadb.atlassian.net/browse/MDEV

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.