Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
2d6599f4
Commit
2d6599f4
authored
16 years ago
by
Teodor Sigaev
Browse files
Options
Downloads
Patches
Plain Diff
Add caching of query to GIN/GiST consistent function.
Per performance gripe from nomao.com
parent
e3afbb35
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/pg_trgm/trgm_gin.c
+28
-4
28 additions, 4 deletions
contrib/pg_trgm/trgm_gin.c
contrib/pg_trgm/trgm_gist.c
+20
-2
20 additions, 2 deletions
contrib/pg_trgm/trgm_gist.c
with
48 additions
and
6 deletions
contrib/pg_trgm/trgm_gin.c
+
28
−
4
View file @
2d6599f4
/*
/*
* $PostgreSQL: pgsql/contrib/pg_trgm/trgm_gin.c,v 1.
4
2008/0
5
/1
7 01:28:21 adunstan
Exp $
* $PostgreSQL: pgsql/contrib/pg_trgm/trgm_gin.c,v 1.
5
2008/0
7
/1
1 11:56:48 teodor
Exp $
*/
*/
#include
"trgm.h"
#include
"trgm.h"
...
@@ -52,6 +52,16 @@ gin_extract_trgm(PG_FUNCTION_ARGS)
...
@@ -52,6 +52,16 @@ gin_extract_trgm(PG_FUNCTION_ARGS)
PG_RETURN_POINTER
(
entries
);
PG_RETURN_POINTER
(
entries
);
}
}
/*
* Per call strage for consistent functions to
* cache computed value from query
*/
typedef
struct
PerCallConsistentStorage
{
int
trglen
;
text
data
[
1
];
/* query */
}
PerCallConsistentStorage
;
#define PCCSHDR_SZ offsetof(PerCallConsistentStorage, data)
Datum
Datum
gin_trgm_consistent
(
PG_FUNCTION_ARGS
)
gin_trgm_consistent
(
PG_FUNCTION_ARGS
)
{
{
...
@@ -60,16 +70,30 @@ gin_trgm_consistent(PG_FUNCTION_ARGS)
...
@@ -60,16 +70,30 @@ gin_trgm_consistent(PG_FUNCTION_ARGS)
text
*
query
=
PG_GETARG_TEXT_P
(
2
);
text
*
query
=
PG_GETARG_TEXT_P
(
2
);
bool
*
recheck
=
(
bool
*
)
PG_GETARG_POINTER
(
3
);
bool
*
recheck
=
(
bool
*
)
PG_GETARG_POINTER
(
3
);
bool
res
=
FALSE
;
bool
res
=
FALSE
;
TRGM
*
trg
;
int4
i
,
int4
i
,
trglen
,
trglen
,
ntrue
=
0
;
ntrue
=
0
;
PerCallConsistentStorage
*
pccs
=
(
PerCallConsistentStorage
*
)
fcinfo
->
flinfo
->
fn_extra
;
/* All cases served by this function are inexact */
/* All cases served by this function are inexact */
*
recheck
=
true
;
*
recheck
=
true
;
trg
=
generate_trgm
(
VARDATA
(
query
),
VARSIZE
(
query
)
-
VARHDRSZ
);
if
(
pccs
==
NULL
||
VARSIZE
(
pccs
->
data
)
!=
VARSIZE
(
query
)
||
memcmp
(
pccs
->
data
,
query
,
VARSIZE
(
query
)
)
!=
0
)
trglen
=
ARRNELEM
(
trg
);
{
TRGM
*
trg
=
generate_trgm
(
VARDATA
(
query
),
VARSIZE
(
query
)
-
VARHDRSZ
);
if
(
pccs
)
pfree
(
pccs
);
fcinfo
->
flinfo
->
fn_extra
=
MemoryContextAlloc
(
fcinfo
->
flinfo
->
fn_mcxt
,
VARSIZE
(
query
)
+
PCCSHDR_SZ
);
pccs
=
(
PerCallConsistentStorage
*
)
fcinfo
->
flinfo
->
fn_extra
;
pccs
->
trglen
=
ARRNELEM
(
trg
);
memcpy
(
pccs
->
data
,
query
,
VARSIZE
(
query
)
);
}
trglen
=
pccs
->
trglen
;
for
(
i
=
0
;
i
<
trglen
;
i
++
)
for
(
i
=
0
;
i
<
trglen
;
i
++
)
if
(
check
[
i
])
if
(
check
[
i
])
...
...
This diff is collapsed.
Click to expand it.
contrib/pg_trgm/trgm_gist.c
+
20
−
2
View file @
2d6599f4
/*
/*
* $PostgreSQL: pgsql/contrib/pg_trgm/trgm_gist.c,v 1.1
4
2008/0
5
/1
7 01:28:21 adunstan
Exp $
* $PostgreSQL: pgsql/contrib/pg_trgm/trgm_gist.c,v 1.1
5
2008/0
7
/1
1 11:56:48 teodor
Exp $
*/
*/
#include
"trgm.h"
#include
"trgm.h"
...
@@ -168,12 +168,30 @@ gtrgm_consistent(PG_FUNCTION_ARGS)
...
@@ -168,12 +168,30 @@ gtrgm_consistent(PG_FUNCTION_ARGS)
/* Oid subtype = PG_GETARG_OID(3); */
/* Oid subtype = PG_GETARG_OID(3); */
bool
*
recheck
=
(
bool
*
)
PG_GETARG_POINTER
(
4
);
bool
*
recheck
=
(
bool
*
)
PG_GETARG_POINTER
(
4
);
TRGM
*
key
=
(
TRGM
*
)
DatumGetPointer
(
entry
->
key
);
TRGM
*
key
=
(
TRGM
*
)
DatumGetPointer
(
entry
->
key
);
TRGM
*
qtrg
=
generate_trgm
(
VARDATA
(
query
),
VARSIZE
(
query
)
-
VARHDRSZ
)
;
TRGM
*
qtrg
;
bool
res
=
false
;
bool
res
=
false
;
char
*
cache
=
(
char
*
)
fcinfo
->
flinfo
->
fn_extra
;
/* All cases served by this function are exact */
/* All cases served by this function are exact */
*
recheck
=
false
;
*
recheck
=
false
;
if
(
cache
==
NULL
||
VARSIZE
(
cache
)
!=
VARSIZE
(
query
)
||
memcmp
(
cache
,
query
,
VARSIZE
(
query
)
)
!=
0
)
{
qtrg
=
generate_trgm
(
VARDATA
(
query
),
VARSIZE
(
query
)
-
VARHDRSZ
);
if
(
cache
)
pfree
(
cache
);
fcinfo
->
flinfo
->
fn_extra
=
MemoryContextAlloc
(
fcinfo
->
flinfo
->
fn_mcxt
,
MAXALIGN
(
VARSIZE
(
query
))
+
VARSIZE
(
qtrg
)
);
cache
=
(
char
*
)
fcinfo
->
flinfo
->
fn_extra
;
memcpy
(
cache
,
query
,
VARSIZE
(
query
)
);
memcpy
(
cache
+
MAXALIGN
(
VARSIZE
(
query
)),
qtrg
,
VARSIZE
(
qtrg
)
);
}
qtrg
=
(
TRGM
*
)(
cache
+
MAXALIGN
(
VARSIZE
(
query
))
);
if
(
GIST_LEAF
(
entry
))
if
(
GIST_LEAF
(
entry
))
{
/* all leafs contains orig trgm */
{
/* all leafs contains orig trgm */
float4
tmpsml
=
cnt_sml
(
key
,
qtrg
);
float4
tmpsml
=
cnt_sml
(
key
,
qtrg
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment