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
6151e89e
Commit
6151e89e
authored
Oct 05, 2008
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some unportable tests
parent
2cf8afe5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
25 deletions
+0
-25
src/test/regress/expected/int8-exp-three-digits.out
src/test/regress/expected/int8-exp-three-digits.out
+0
-10
src/test/regress/expected/int8.out
src/test/regress/expected/int8.out
+0
-10
src/test/regress/sql/int8.sql
src/test/regress/sql/int8.sql
+0
-5
No files found.
src/test/regress/expected/int8-exp-three-digits.out
View file @
6151e89e
...
...
@@ -669,8 +669,6 @@ select '-9223372036854775800'::int8 - '9223372036854775800'::int8;
ERROR: bigint out of range
select '9223372036854775800'::int8 * '9223372036854775800'::int8;
ERROR: bigint out of range
select '-9223372036854775808'::int8 / '-1'::int8;
ERROR: bigint out of range
select '9223372036854775800'::int8 / '0'::int8;
ERROR: division by zero
select '9223372036854775800'::int8 % '0'::int8;
...
...
@@ -683,8 +681,6 @@ select '-9223372036854775800'::int8 - '100'::int4;
ERROR: bigint out of range
select '9223372036854775800'::int8 * '100'::int4;
ERROR: bigint out of range
select '-9223372036854775808'::int8 / '-1'::int4;
ERROR: bigint out of range
select '100'::int4 + '9223372036854775800'::int8;
ERROR: bigint out of range
select '-100'::int4 - '9223372036854775800'::int8;
...
...
@@ -697,8 +693,6 @@ select '-9223372036854775800'::int8 - '100'::int2;
ERROR: bigint out of range
select '9223372036854775800'::int8 * '100'::int2;
ERROR: bigint out of range
select '-9223372036854775808'::int8 / '-1'::int2;
ERROR: bigint out of range
select '-9223372036854775808'::int8 / '0'::int2;
ERROR: division by zero
select '100'::int2 + '9223372036854775800'::int8;
...
...
@@ -747,10 +741,6 @@ SELECT CAST('36854775807.0'::float4 AS int8);
36854775808
(1 row)
SELECT CAST('9223372036854775807.0'::float4 AS int8);
ERROR: bigint out of range
SELECT CAST('9223372036854775807.0'::float8 AS int8);
ERROR: bigint out of range
SELECT CAST('922337203685477580700.0'::float8 AS int8);
ERROR: bigint out of range
SELECT CAST(q1 AS oid) FROM INT8_TBL;
...
...
src/test/regress/expected/int8.out
View file @
6151e89e
...
...
@@ -669,8 +669,6 @@ select '-9223372036854775800'::int8 - '9223372036854775800'::int8;
ERROR: bigint out of range
select '9223372036854775800'::int8 * '9223372036854775800'::int8;
ERROR: bigint out of range
select '-9223372036854775808'::int8 / '-1'::int8;
ERROR: bigint out of range
select '9223372036854775800'::int8 / '0'::int8;
ERROR: division by zero
select '9223372036854775800'::int8 % '0'::int8;
...
...
@@ -683,8 +681,6 @@ select '-9223372036854775800'::int8 - '100'::int4;
ERROR: bigint out of range
select '9223372036854775800'::int8 * '100'::int4;
ERROR: bigint out of range
select '-9223372036854775808'::int8 / '-1'::int4;
ERROR: bigint out of range
select '100'::int4 + '9223372036854775800'::int8;
ERROR: bigint out of range
select '-100'::int4 - '9223372036854775800'::int8;
...
...
@@ -697,8 +693,6 @@ select '-9223372036854775800'::int8 - '100'::int2;
ERROR: bigint out of range
select '9223372036854775800'::int8 * '100'::int2;
ERROR: bigint out of range
select '-9223372036854775808'::int8 / '-1'::int2;
ERROR: bigint out of range
select '-9223372036854775808'::int8 / '0'::int2;
ERROR: division by zero
select '100'::int2 + '9223372036854775800'::int8;
...
...
@@ -747,10 +741,6 @@ SELECT CAST('36854775807.0'::float4 AS int8);
36854775808
(1 row)
SELECT CAST('9223372036854775807.0'::float4 AS int8);
ERROR: bigint out of range
SELECT CAST('9223372036854775807.0'::float8 AS int8);
ERROR: bigint out of range
SELECT CAST('922337203685477580700.0'::float8 AS int8);
ERROR: bigint out of range
SELECT CAST(q1 AS oid) FROM INT8_TBL;
...
...
src/test/regress/sql/int8.sql
View file @
6151e89e
...
...
@@ -139,7 +139,6 @@ select '9223372036854775800'::int8 - '-9223372036854775800'::int8;
select
'-9223372036854775800'
::
int8
-
'9223372036854775800'
::
int8
;
select
'9223372036854775800'
::
int8
*
'9223372036854775800'
::
int8
;
select
'-9223372036854775808'
::
int8
/
'-1'
::
int8
;
select
'9223372036854775800'
::
int8
/
'0'
::
int8
;
select
'9223372036854775800'
::
int8
%
'0'
::
int8
;
...
...
@@ -149,7 +148,6 @@ select abs('-9223372036854775808'::int8);
select
'9223372036854775800'
::
int8
+
'100'
::
int4
;
select
'-9223372036854775800'
::
int8
-
'100'
::
int4
;
select
'9223372036854775800'
::
int8
*
'100'
::
int4
;
select
'-9223372036854775808'
::
int8
/
'-1'
::
int4
;
select
'100'
::
int4
+
'9223372036854775800'
::
int8
;
select
'-100'
::
int4
-
'9223372036854775800'
::
int8
;
...
...
@@ -158,7 +156,6 @@ select '100'::int4 * '9223372036854775800'::int8;
select
'9223372036854775800'
::
int8
+
'100'
::
int2
;
select
'-9223372036854775800'
::
int8
-
'100'
::
int2
;
select
'9223372036854775800'
::
int8
*
'100'
::
int2
;
select
'-9223372036854775808'
::
int8
/
'-1'
::
int2
;
select
'-9223372036854775808'
::
int8
/
'0'
::
int2
;
select
'100'
::
int2
+
'9223372036854775800'
::
int8
;
...
...
@@ -176,8 +173,6 @@ SELECT CAST('42'::int2 AS int8), CAST('-37'::int2 AS int8);
SELECT
CAST
(
q1
AS
float4
),
CAST
(
q2
AS
float8
)
FROM
INT8_TBL
;
SELECT
CAST
(
'36854775807.0'
::
float4
AS
int8
);
SELECT
CAST
(
'9223372036854775807.0'
::
float4
AS
int8
);
SELECT
CAST
(
'9223372036854775807.0'
::
float8
AS
int8
);
SELECT
CAST
(
'922337203685477580700.0'
::
float8
AS
int8
);
SELECT
CAST
(
q1
AS
oid
)
FROM
INT8_TBL
;
...
...
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