1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
<?xml version="1.0" encoding="utf-8"?>
<test>
<name>rotation vs old index format</name>
<requires>
<non-rt/>
<non-windows/>
<!--
<variant_match/>
-->
</requires>
<config>
searchd
{
<searchd_settings/>
binlog_path = #
}
indexer
{
mem_limit = 16M
}
source dummy
{
type = mysql
<sql_settings/>
sql_query = select * from test_table
sql_attr_uint = group_id
sql_field_string = title
}
index small
{
source = dummy
path = <data_path/>/small
docinfo = extern
}
</config>
<db_drop>drop table if exists test_table</db_drop>
<db_create>
create table test_table
(
id INTEGER PRIMARY KEY NOT NULL AUTO_INCREMENT,
group_id INTEGER NOT NULL,
title VARCHAR(255) NOT NULL,
content VARCHAR(1024) NOT NULL
)
</db_create>
<db_insert>
insert into test_table values
( 1, 1, 'test one', 'this is my test document number one. also checking search within phrases.' );
</db_insert>
<custom_test><![CDATA[
global $index_data_path, $sd_pid_file;
global $this_test;
$query = create_function('$client,$words','$result = $client->Query ( $words ); if ( $result ) { unset ( $result["time"] ); return $result; } else return $client->GetLastError(); ');
$results = array();
$errors = '';
$results[] = $query ( $client, '' );
$results[] = $query ( $client, 'test' );
foreach (explode(" ", "a d h i k m p s") as $c)
exec ( "cp $this_test/refdata/small1.sp$c $index_data_path/small.new.sp$c" );
exec ( "kill -HUP `cat $sd_pid_file`" );
sleep ( 1 );
$results[] = $query ( $client, '' );
$results[] = $query ( $client, 'test' );
foreach (explode(" ", "a d h i k m p s") as $c)
exec ( "cp $this_test/refdata/small2.sp$c $index_data_path/small.new.sp$c" );
exec ( "kill -HUP `cat $sd_pid_file`" );
sleep ( 1 );
$results[] = $query ( $client, '' );
$results[] = $query ( $client, 'test' );
]]></custom_test>
</test>
|