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
efc1aeb8
Commit
efc1aeb8
authored
Aug 14, 2009
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove the test case that depends on the platform's float output format.
parent
3a00c0a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
9 deletions
+0
-9
src/pl/plpython/expected/plpython_types.out
src/pl/plpython/expected/plpython_types.out
+0
-8
src/pl/plpython/sql/plpython_types.sql
src/pl/plpython/sql/plpython_types.sql
+0
-1
No files found.
src/pl/plpython/expected/plpython_types.out
View file @
efc1aeb8
...
@@ -173,14 +173,6 @@ CONTEXT: PL/Python function "test_type_conversion_numeric"
...
@@ -173,14 +173,6 @@ CONTEXT: PL/Python function "test_type_conversion_numeric"
5000000000.5
5000000000.5
(1 row)
(1 row)
SELECT * FROM test_type_conversion_numeric(79228162514264337593543950336);
INFO: (7.9228162514264338e+28, <type 'float'>)
CONTEXT: PL/Python function "test_type_conversion_numeric"
test_type_conversion_numeric
-------------------------------
79228162514300000000000000000
(1 row)
SELECT * FROM test_type_conversion_numeric(null);
SELECT * FROM test_type_conversion_numeric(null);
INFO: (None, <type 'NoneType'>)
INFO: (None, <type 'NoneType'>)
CONTEXT: PL/Python function "test_type_conversion_numeric"
CONTEXT: PL/Python function "test_type_conversion_numeric"
...
...
src/pl/plpython/sql/plpython_types.sql
View file @
efc1aeb8
...
@@ -65,7 +65,6 @@ $$ LANGUAGE plpythonu;
...
@@ -65,7 +65,6 @@ $$ LANGUAGE plpythonu;
SELECT
*
FROM
test_type_conversion_numeric
(
100
);
SELECT
*
FROM
test_type_conversion_numeric
(
100
);
SELECT
*
FROM
test_type_conversion_numeric
(
-
100
);
SELECT
*
FROM
test_type_conversion_numeric
(
-
100
);
SELECT
*
FROM
test_type_conversion_numeric
(
5000000000
.
5
);
SELECT
*
FROM
test_type_conversion_numeric
(
5000000000
.
5
);
SELECT
*
FROM
test_type_conversion_numeric
(
79228162514264337593543950336
);
SELECT
*
FROM
test_type_conversion_numeric
(
null
);
SELECT
*
FROM
test_type_conversion_numeric
(
null
);
...
...
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