Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitcacbf1c

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parentsa279d29 +1279e1b commitcacbf1c

17 files changed

+1189
-37
lines changed

‎META.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"name":"RUM",
3+
"abstract":"RUM index access method",
4+
"description":"RUM is an extended version of GIN (generalized inverted index) access method. Unlike GIN, RUM stores additional information in posting lists/trees besides item pointers. For example, those additional information might be lexemes positions or timestamps. Thanks to that RUM accelerate certain types of queries in orders of magnitude.",
5+
"version":"1.1.0",
6+
"maintainer": [
7+
"Alexander Korotkov <a.korotkov@postgrespro.ru>",
8+
"Oleg Bartunov <o.bartunov@postgrespro.ru>",
9+
"Teodor Sigaev <teodor@postgrespro.ru>",
10+
"Arthur Zakirov <a.zakirov@postgrespro.ru>"
11+
],
12+
"license": {
13+
"PostgreSQL":"http://www.postgresql.org/about/licence"
14+
},
15+
"prereqs": {
16+
"runtime": {
17+
"requires": {
18+
"PostgreSQL":"9.6.0"
19+
},
20+
"recommends": {
21+
"PostgreSQL":"9.6.5"
22+
}
23+
}
24+
},
25+
"provides": {
26+
"rum": {
27+
"file":"rum--1.1.sql",
28+
"docfile":"README.md",
29+
"version":"1.1.0",
30+
"abstract":"RUM index access method"
31+
}
32+
},
33+
"resources": {
34+
"homepage":"https://github.com/postgrespro/rum",
35+
"bugtracker": {
36+
"web":"https://github.com/postgrespro/rum/issues"
37+
},
38+
"repository": {
39+
"url":"https://github.com/postgrespro/rum.git",
40+
"web":"https://github.com/postgrespro/rum",
41+
"type":"git"
42+
}
43+
},
44+
"generated_by":"Alexander Korotkov",
45+
"meta-spec": {
46+
"version":"1.0.0",
47+
"url":"http://pgxn.org/meta/spec.txt"
48+
},
49+
"tags": [
50+
"index",
51+
"search",
52+
"GIN",
53+
"full text",
54+
"additional information"
55+
]
56+
}

‎Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,23 @@ rum--%.sql: gen_rum_sql--%.pl
5454
install: installincludes
5555

5656
installincludes:
57+
$(INSTALL) -d'$(DESTDIR)$(includedir_server)/'
5758
$(INSTALL_DATA)$(addprefix$(srcdir)/,$(RELATIVE_INCLUDES))'$(DESTDIR)$(includedir_server)/'
5859

5960
uninstall: uninstallincludes
6061

6162
uninstallincludes:
6263
rm -f$(addprefix '$(DESTDIR)$(includedir_server)/',$(INCLUDES))
64+
65+
ISOLATIONCHECKS= predicate-rum predicate-rum-2
66+
67+
submake-isolation:
68+
$(MAKE) -C$(top_builddir)/src/test/isolation all
69+
70+
submake-rum:
71+
$(MAKE) -C$(top_builddir)/contrib/rum
72+
73+
isolationcheck: | submake-isolation submake-rum temp-install
74+
$(pg_isolation_regress_check)\
75+
--temp-config$(top_srcdir)/contrib/rum/logical.conf\
76+
$(ISOLATIONCHECKS)

‎README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,8 @@ SELECT * FROM query
233233

234234
Alexander Korotkov <a.korotkov@postgrespro.ru> Postgres Professional Ltd., Russia
235235

236-
Oleg Bartunov<oleg@sai.msu.su> Postgres Professional Ltd., Russia
236+
Oleg Bartunov <o.bartunov@postgrespro.ru> Postgres Professional Ltd., Russia
237237

238-
Teodor Sigaev<teodor@sigaev.ru> Postgres Professional Ltd., Russia
238+
Teodor Sigaev<teodor@postgrespro.ru> Postgres Professional Ltd., Russia
239+
240+
Arthur Zakirov <a.zakirov@postgrespro.ru> Postgres Professional Ltd., Russia

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp