[MDEV-8544] OQGRAPH not works with tables which contain non latin symbols. Created: 2015-07-26  Updated: 2022-09-08

Status: Confirmed
Project: MariaDB Server
Component/s: Storage Engine - OQGRAPH
Affects Version/s: 10.0.20, 10.1
Fix Version/s: 10.1

Type: Bug Priority: Major
Reporter: Mikhail Gavrilov Assignee: Andrew McDonnell
Resolution: Unresolved Votes: 0
Labels: None
Environment:

Linux



 Description   

CREATE TABLE `#departments` (
  `id_depart` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  `id_parent` INT(10) UNSIGNED DEFAULT NULL,
  PRIMARY KEY (`id_depart`)
) ENGINE=INNODB
 
CREATE TABLE `departments_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='#departments' origid='id_parent' destid='id_depart'
 
SELECT * FROM `departments_graph` WHERE latch='breadth_first' AND origid=1 AND destid=2;

Error Code: 1146
Table 'test1.#departments' doesn't exist


Generated at Thu Feb 08 07:27:57 UTC 2024 using Jira 8.20.16#820016-sha1:9d11dbea5f4be3d4cc21f03a88dd11d8c8687422.