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
fab6ca23
Commit
fab6ca23
authored
9 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
hstore_plpython: Fix regression tests under Python 3
parent
e6dc5034
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/hstore_plpython/expected/hstore_plpython.out
+2
-2
2 additions, 2 deletions
contrib/hstore_plpython/expected/hstore_plpython.out
contrib/hstore_plpython/sql/hstore_plpython.sql
+2
-2
2 additions, 2 deletions
contrib/hstore_plpython/sql/hstore_plpython.sql
with
4 additions
and
4 deletions
contrib/hstore_plpython/expected/hstore_plpython.out
+
2
−
2
View file @
fab6ca23
...
...
@@ -6,7 +6,7 @@ LANGUAGE plpythonu
TRANSFORM FOR TYPE hstore
AS $$
assert isinstance(val, dict)
i = val.items()
i =
list(
val.items()
)
i.sort()
plpy.info(i)
return len(val)
...
...
@@ -25,7 +25,7 @@ LANGUAGE plpython2u
TRANSFORM FOR TYPE hstore
AS $$
assert isinstance(val, dict)
i = val.items()
i =
list(
val.items()
)
i.sort()
plpy.info(i)
return len(val)
...
...
This diff is collapsed.
Click to expand it.
contrib/hstore_plpython/sql/hstore_plpython.sql
+
2
−
2
View file @
fab6ca23
...
...
@@ -8,7 +8,7 @@ LANGUAGE plpythonu
TRANSFORM
FOR
TYPE
hstore
AS
$$
assert
isinstance
(
val
,
dict
)
i
=
val
.
items
()
i
=
list
(
val
.
items
()
)
i
.
sort
()
plpy
.
info
(
i
)
return
len
(
val
)
...
...
@@ -23,7 +23,7 @@ LANGUAGE plpython2u
TRANSFORM
FOR
TYPE
hstore
AS
$$
assert
isinstance
(
val
,
dict
)
i
=
val
.
items
()
i
=
list
(
val
.
items
()
)
i
.
sort
()
plpy
.
info
(
i
)
return
len
(
val
)
...
...
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