File: test.xml

package info (click to toggle)
sphinxsearch 2.2.11-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 25,720 kB
  • sloc: cpp: 102,259; xml: 85,608; sh: 9,259; php: 3,790; ansic: 3,158; yacc: 1,969; java: 1,336; ruby: 1,289; python: 1,062; pascal: 912; perl: 381; lex: 275; makefile: 150; sql: 77; cs: 35
file content (91 lines) | stat: -rw-r--r-- 1,816 bytes parent folder | download | duplicates (4)
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>