|
|
@@ -22,6 +22,15 @@ index indexrt
|
|
|
stored_fields = text
|
|
|
}
|
|
|
|
|
|
+index check
|
|
|
+{
|
|
|
+ type = rt
|
|
|
+ path = <data_path/>/check
|
|
|
+ rt_field = text
|
|
|
+ stored_fields = text
|
|
|
+ index_field_lengths = 1
|
|
|
+}
|
|
|
+
|
|
|
</Config>
|
|
|
|
|
|
<queries>
|
|
|
@@ -32,6 +41,7 @@ index indexrt
|
|
|
insert into indexrt values (5,'text five',2),(6,'text six',3);
|
|
|
flush ramchunk indexrt;
|
|
|
insert into indexrt values (7,'text seven',3),(8,'text eight',3);
|
|
|
+ insert into check values (7,'text seven'),(8,'text eight');
|
|
|
|
|
|
<!-- stuff from mysqldump in usual mode -->
|
|
|
/*!40100 SET @@SQL_MODE='' */;
|
|
|
@@ -91,6 +101,11 @@ SET SESSION character_set_results = 'binary';
|
|
|
SELECT COLUMN_NAME, JSON_EXTRACT(HISTOGRAM, '$."number-of-buckets-specified"') FROM information_schema.COLUMN_STATISTICS WHERE SCHEMA_NAME = 'manticore' AND TABLE_NAME = 'indexrt';
|
|
|
|
|
|
|
|
|
+show create table `check`;
|
|
|
+show fields from `check`;
|
|
|
+SELECT /*!40001 SQL_NO_CACHE */ * FROM `check`;
|
|
|
+SELECT * FROM `check`;
|
|
|
+
|
|
|
</sphinxql>
|
|
|
</queries>
|
|
|
|