projects
/
users
/
hanada
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6508bf5
)
Mark the text_soundex() function as "strict", to avoid crashing on NULL
author
Neil Conway
<neilc@samurai.com>
Wed, 26 Jan 2005 08:10:08 +0000
(08:10 +0000)
committer
Neil Conway
<neilc@samurai.com>
Wed, 26 Jan 2005 08:10:08 +0000
(08:10 +0000)
input. Also, may as well mark it "cacheable" as well. From Kris Jurka.
contrib/fuzzystrmatch/fuzzystrmatch.sql.in
patch
|
blob
|
blame
|
history
diff --git
a/contrib/fuzzystrmatch/fuzzystrmatch.sql.in
b/contrib/fuzzystrmatch/fuzzystrmatch.sql.in
index c548b8ba9f28c0c2941451c9f0decc92a9d455dd..36f0a06d445842e9215b555611e18282f190b74f 100644
(file)
--- a/
contrib/fuzzystrmatch/fuzzystrmatch.sql.in
+++ b/
contrib/fuzzystrmatch/fuzzystrmatch.sql.in
@@
-17,4
+17,4
@@
LANGUAGE 'C' WITH (iscachable, isstrict);
CREATE FUNCTION text_soundex(text) RETURNS text
AS 'MODULE_PATHNAME', 'soundex'
-LANGUAGE 'C';
+LANGUAGE 'C'
WITH (iscachable, isstrict)
;