I am using MariaDB 10.1.19 and Sphinx 2.2.10
I am trying to query the Sphinx server using SphinxSE plugin available in MariaDB but I'm getting "OK" as response instead of result (rows).
Query : SELECT * FROM from_sphinx_documents Where query ="eml";
I validated Sphinx server by querying it using test jar file and I'm able to get the result there.
Below is the structure of my Proxy Table :
CREATE TABLE from_sphinx_documents(
id BIGINT UNSIGNED NOT NULL,
weight INTEGER NOT NULL,
query VARCHAR(3072) NOT NULL,
group_id INTEGER,
_sph_count INTEGER,
CASE_ID INTEGER,
FOLDER_ID INTEGER,
DOC_ID INTEGER,
INDEX(query)
) ENGINE=SPHINX CONNECTION ="sphinx://10.0.10.150:9675/documents"
Please can anybody shed a light on it. Is it a version mismatch issue ?