This is a follow up to https://github.com/elastic/elasticsearch/pull/135744, removing the implicit `LIMIT` command added to each subquery potentially lifts the restrictions on: 1. Subqueries followed by `LOOKUP JOIN` under CCS context, as `LOOKUP JOIN` may not work with [remote index patterns + `LIMIT`](https://github.com/elastic/elasticsearch/blob/main/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/join/Join.java) before it. 2. Subqueries followed by `INLINE STATS`, as `INLINE STATS` may not work when there is a [`LIMIT`](https://github.com/elastic/elasticsearch/blob/main/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Verifier.java#L269) command before it.