projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a22de54
)
Fix some uses of str[n]casecmp that should be pg_str[n]casecmp.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Fri, 15 Sep 2006 21:35:30 +0000
(21:35 +0000)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Fri, 15 Sep 2006 21:35:30 +0000
(21:35 +0000)
contrib/hstore/hstore_io.c
patch
|
blob
|
blame
|
history
diff --git
a/contrib/hstore/hstore_io.c
b/contrib/hstore/hstore_io.c
index 1faecadf6ec498fd0f08bd14a46aa2edc50d4682..b905ff7f3d5ba94285ea4e799c9710a8f7c1a9af 100644
(file)
--- a/
contrib/hstore/hstore_io.c
+++ b/
contrib/hstore/hstore_io.c
@@
-166,7
+166,7
@@
parse_hstore( HSParser *state ) {
state->pairs[ state->pcur ].needfree = true;
if ( state->cur - state->word == 4 && !escaped) {
state->word[4] = '\0';
- if ( 0==strcasecmp(state->word, "null") )
+ if ( 0==
pg_
strcasecmp(state->word, "null") )
state->pairs[ state->pcur ].isnull=true;
}
state->word=NULL;