Comments - Unknown option 'data_table' OQGraph in MariaDB 10.0.7

10 years, 1 month ago Brian Evans

You have a typo. it is data_table not table_data.

CREATE TABLE oq_graph (
  latch VARCHAR(32) NULL,
  origid BIGINT UNSIGNED NULL,
  destid BIGINT UNSIGNED NULL,
  weight DOUBLE NULL,
  seq BIGINT UNSIGNED NULL,
  linkid BIGINT UNSIGNED NULL,
  KEY (latch, origid, destid) USING HASH,
  KEY (latch, destid, origid) USING HASH
) 
ENGINE=OQGRAPH 
data_table='oq_backing' origid='origid' destid='destid';
 
10 years, 1 month ago Preston Thayne

You're right, my typo was in my question not my actual query. I have fixed it in my question. The text that I used to create the table was a copy/paste. Sorry for the typo.

 
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.