Re: Errors with Information_Schema in Create Target Results
Posted by: Vaughan Wickham
Date: October 30, 2021 08:40PM

Peter Brawley Wrote:
-------------------------------------------------------
> > ERROR 1128 (HY000): Function
> 'newforma_wordbreaker' is not defined
> Query OK, 0 rows affected (0.00 sec)
>
> > ERROR 1146 (42S02): Table
> 'newformaglobal_nix.search_content' doesn't exist
>

This is the only reference to: newforma_wordbreaker that I can find

--
-- Table structure for table `search_content`
--

DROP TABLE IF EXISTS `search_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `search_content` (
`sc_key` bigint(20) NOT NULL AUTO_INCREMENT,
`id` varchar(255) NOT NULL DEFAULT '',
`c_key` bigint(20) NOT NULL DEFAULT '0',
`content` mediumtext NOT NULL,
`modified_by_s_key` bigint(20) NOT NULL DEFAULT '0',
`modified_time` datetime NOT NULL DEFAULT '1979-01-01 00:00:00',
`replicated_by_s_key` bigint(20) NOT NULL DEFAULT '0',
`sequence_number` bigint(20) NOT NULL DEFAULT '0',
`deleted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`sc_key`),
KEY `index_id` (`id`(6)),
KEY `fk_search_content_1` (`c_key`),
KEY `fk_search_content_2` (`modified_by_s_key`),
KEY `fk_search_content_3` (`replicated_by_s_key`),
KEY `index_sequence_number` (`sequence_number`),
FULLTEXT KEY `index_content` (`content`) /*!50100 WITH PARSER `newforma_wordbreaker` */
) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

Options: ReplyQuote


Subject
Written By
Posted
Re: Errors with Information_Schema in Create Target Results
October 30, 2021 08:40PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.