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
aaeef4da
Commit
aaeef4da
authored
27 years ago
by
Marc G. Fournier
Browse files
Options
Downloads
Patches
Plain Diff
GNUmakefile.in - remove backend/utils/Gen_fmgrtab.sh on distclean
varlena.c - part of Thomas' most recent patch
parent
75e2370c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/GNUmakefile.in
+2
-1
2 additions, 1 deletion
src/GNUmakefile.in
src/backend/utils/adt/varlena.c
+82
-39
82 additions, 39 deletions
src/backend/utils/adt/varlena.c
with
84 additions
and
40 deletions
src/GNUmakefile.in
+
2
−
1
View file @
aaeef4da
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.1
0
1997/0
2/28 18:45
:17 scrappy Exp $
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.1
1
1997/0
4/09 08:29
:17 scrappy Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -79,6 +79,7 @@ distclean: clean
bin/psql/Makefile \
bin/pg_dump/Makefile \
include/config.h \
backend/utils/Gen_fmgrtab.sh \
include/os.h
...
...
This diff is collapsed.
Click to expand it.
src/backend/utils/adt/varlena.c
+
82
−
39
View file @
aaeef4da
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/varlena.c,v 1.1
2
1997/04/0
2 18:13:24
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/varlena.c,v 1.1
3
1997/04/0
9 08:29:35
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -285,9 +285,19 @@ textne(struct varlena *arg1, struct varlena *arg2)
return
((
bool
)
!
texteq
(
arg1
,
arg2
));
}
/* text_lt()
* Comparison function for text strings.
* Includes locale support, but must copy strings to temporary memory
* to allow null-termination for inputs to strcoll().
* XXX HACK code for textlen() indicates that there can be embedded nulls
* but it appears that most routines (incl. this one) assume not! - tgl 97/04/07
*/
bool
text_lt
(
struct
varlena
*
arg1
,
struct
varlena
*
arg2
)
{
bool
result
;
int
cval
;
int
len
;
#ifdef UNSIGNED_CHAR_TEXT
unsigned
...
...
@@ -295,34 +305,55 @@ text_lt(struct varlena *arg1, struct varlena *arg2)
char
*
a1p
,
*
a2p
;
if
(
arg1
==
NULL
||
arg2
==
NULL
)
return
((
bool
)
0
);
return
((
bool
)
FALSE
);
a1p
=
(
unsigned
char
*
)
VARDATA
(
arg1
);
a2p
=
(
unsigned
char
*
)
VARDATA
(
arg2
);
len
=
(((
VARSIZE
(
arg1
)
<=
VARSIZE
(
arg2
))
?
VARSIZE
(
arg1
)
:
VARSIZE
(
arg2
))
-
VARHDRSZ
);
if
((
len
=
arg1
->
vl_len
)
>
arg2
->
vl_len
)
len
=
arg2
->
vl_len
;
len
-=
sizeof
(
int32
);
while
(
len
!=
0
&&
*
a1p
==
*
a2p
)
{
a1p
++
;
a2p
++
;
len
--
;
}
if
(
len
)
#ifdef USE_LOCALE
return
(
bool
)
(
strcoll
(
a2p
,
a1p
));
if
(
!
PointerIsValid
(
a1p
=
PALLOC
(
len
+
1
))
||
!
PointerIsValid
(
a2p
=
PALLOC
(
len
+
1
)))
{
elog
(
WARN
,
"Unable to allocate memory for text comparison"
,
NULL
);
return
(
FALSE
);
};
memcpy
(
a1p
,
VARDATA
(
arg1
),
len
);
*
(
a1p
+
len
)
=
'\0'
;
memcpy
(
a2p
,
VARDATA
(
arg2
),
len
);
*
(
a2p
+
len
)
=
'\0'
;
cval
=
strcoll
(
a1p
,
a2p
);
result
=
((
cval
<
0
)
||
((
cval
==
0
)
&&
(
VARSIZE
(
arg1
)
<
VARSIZE
(
arg2
))));
PFREE
(
a1p
);
PFREE
(
a2p
);
return
(
result
);
#else
return
(
bool
)
(
*
a1p
<
*
a2p
);
a1p
=
(
unsigned
char
*
)
VARDATA
(
arg1
);
a2p
=
(
unsigned
char
*
)
VARDATA
(
arg2
);
while
(
len
!=
0
&&
*
a1p
==
*
a2p
)
{
a1p
++
;
a2p
++
;
len
--
;
};
return
((
bool
)
(
len
?
(
*
a1p
<
*
a2p
)
:
(
VARSIZE
(
arg1
)
<
VARSIZE
(
arg2
))));
#endif
else
return
(
bool
)
(
arg1
->
vl_len
<
arg2
->
vl_len
);
}
}
/* text_lt() */
/* text_le()
* Comparison function for text strings.
* Includes locale support, but must copy strings to temporary memory
* to allow null-termination for inputs to strcoll().
* XXX HACK code for textlen() indicates that there can be embedded nulls
* but it appears that most routines (incl. this one) assume not! - tgl 97/04/07
*/
bool
text_le
(
struct
varlena
*
arg1
,
struct
varlena
*
arg2
)
{
bool
result
;
int
cval
;
int
len
;
#ifdef UNSIGNED_CHAR_TEXT
unsigned
...
...
@@ -332,28 +363,40 @@ text_le(struct varlena *arg1, struct varlena *arg2)
if
(
arg1
==
NULL
||
arg2
==
NULL
)
return
((
bool
)
0
);
a1p
=
(
unsigned
char
*
)
VARDATA
(
arg1
);
a2p
=
(
unsigned
char
*
)
VARDATA
(
arg2
);
len
=
(((
VARSIZE
(
arg1
)
<=
VARSIZE
(
arg2
))
?
VARSIZE
(
arg1
)
:
VARSIZE
(
arg2
))
-
VARHDRSZ
);
if
((
len
=
arg1
->
vl_len
)
>
arg2
->
vl_len
)
len
=
arg2
->
vl_len
;
len
-=
sizeof
(
int32
);
/* varlena! */
while
(
len
!=
0
&&
*
a1p
==
*
a2p
)
{
a1p
++
;
a2p
++
;
len
--
;
}
if
(
len
)
#ifdef USE_LOCALE
return
(
bool
)
(
strcoll
(
a2p
,
a1p
));
if
(
!
PointerIsValid
(
a1p
=
PALLOC
(
len
+
1
))
||
!
PointerIsValid
(
a2p
=
PALLOC
(
len
+
1
)))
{
elog
(
WARN
,
"Unable to allocate memory for text comparison"
,
NULL
);
return
(
FALSE
);
};
memcpy
(
a1p
,
VARDATA
(
arg1
),
len
);
*
(
a1p
+
len
)
=
'\0'
;
memcpy
(
a2p
,
VARDATA
(
arg2
),
len
);
*
(
a2p
+
len
)
=
'\0'
;
cval
=
strcoll
(
a1p
,
a2p
);
result
=
((
cval
<
0
)
||
((
cval
==
0
)
&&
(
VARSIZE
(
arg1
)
<=
VARSIZE
(
arg2
))));
PFREE
(
a1p
);
PFREE
(
a2p
);
return
(
result
);
#else
return
(
bool
)
(
*
a1p
<
*
a2p
);
a1p
=
(
unsigned
char
*
)
VARDATA
(
arg1
);
a2p
=
(
unsigned
char
*
)
VARDATA
(
arg2
);
while
(
len
!=
0
&&
*
a1p
==
*
a2p
)
{
a1p
++
;
a2p
++
;
len
--
;
};
return
((
bool
)
(
len
?
(
*
a1p
<=
*
a2p
)
:
(
VARSIZE
(
arg1
)
<=
VARSIZE
(
arg2
))));
#endif
else
return
((
bool
)
VARSIZE
(
arg1
)
<=
VARSIZE
(
arg2
));
}
}
/* text_le() */
bool
text_gt
(
struct
varlena
*
arg1
,
struct
varlena
*
arg2
)
...
...
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