Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
f2dfd561
Commit
f2dfd561
authored
Jul 05, 2000
by
Jan Wieck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed lztextlen() bug in MULTIBYTE, still thinking that lztext
does compression itself the old way. Jan
parent
d0cb4e11
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/backend/utils/adt/lztext.c
src/backend/utils/adt/lztext.c
+2
-2
No files found.
src/backend/utils/adt/lztext.c
View file @
f2dfd561
/* ----------
* lztext.c -
*
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/lztext.c,v 1.
8 2000/07/03 23:09:52
wieck Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/lztext.c,v 1.
9 2000/07/05 10:09:53
wieck Exp $
*
* Text type with internal LZ compressed representation. Uses the
* standard PostgreSQL compression method.
...
...
@@ -118,7 +118,7 @@ lztextlen(lztext *lz)
#ifdef MULTIBYTE
len
=
0
;
s1
=
s2
=
(
unsigned
char
*
)
lztextout
(
lz
);
l
=
PGLZ_RAW_SIZE
(
lz
);
l
=
strlen
(
s2
);
while
(
l
>
0
)
{
wl
=
pg_mblen
(
s1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment