aboutsummaryrefslogtreecommitdiffstats
path: root/tests/search/fixtures/posts.xml
blob: 4916cd188b8346fbea57e2e00acd3d742478ccef (plain)
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
<?xml version="1.0" encoding="UTF-8" ?>
<dataset>
	<table name="phpbb_posts">
		<column>post_id</column>
		<column>post_username</column>
		<column>post_subject</column>
		<column>post_text</column>
		<row>
			<value>1</value>
			<value>foo</value>
			<value>foo</value>
			<value>foo</value>
		</row>
		<row>
			<value>2</value>
			<value>bar</value>
			<value>bar</value>
			<value>bar</value>
		</row>
		<row>
			<value>3</value>
			<value>commonword</value>
			<value>commonword</value>
			<value>commonword</value>
		</row>
		<row>
			<value>4</value>
			<value>baaz</value>
			<value>baaz</value>
			<value>baaz</value>
		</row>
	</table>
	<table name="phpbb_search_wordlist">
		<column>word_id</column>
		<column>word_text</column>
		<column>word_common</column>
		<row>
			<value>1</value>
			<value>foo</value>
			<value>0</value>
		</row>
		<row>
			<value>2</value>
			<value>bar</value>
			<value>0</value>
		</row>
		<row>
			<value>3</value>
			<value>commonword</value>
			<value>1</value>
		</row>
		<row>
			<value>4</value>
			<value>baaz</value>
			<value>0</value>
		</row>
	</table>
</dataset>