Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit485541a

Browse files
author
Neil Conway
committed
Update the expected regression test results to account for the changes to
error messages I made yesterday -- thanks to Andrew Dunstan for reportingthis, and my apologies for missing it the first time.
1 parent0cb0ec9 commit485541a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

‎contrib/cube/expected/cube.out

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -307,19 +307,19 @@ ERROR: bad cube representation
307307
DETAIL: syntax error at or near ","
308308
SELECT '[(1,2,3),(2,3)]'::cube AS cube; -- 1
309309
ERROR: bad cube representation
310-
DETAIL:different point dimensions in (1,2,3) and (2,3)
310+
DETAIL:Different point dimensions in (1,2,3) and (2,3).
311311
SELECT '[(1,2),(1,2,3)]'::cube AS cube; -- 1
312312
ERROR: bad cube representation
313-
DETAIL:different point dimensions in (1,2) and (1,2,3)
313+
DETAIL:Different point dimensions in (1,2) and (1,2,3).
314314
SELECT '(1),(2),'::cube AS cube; -- 2
315315
ERROR: bad cube representation
316316
DETAIL: syntax error at or near ","
317317
SELECT '(1,2,3),(2,3)'::cube AS cube; -- 3
318318
ERROR: bad cube representation
319-
DETAIL:different point dimensions in (1,2,3) and (2,3)
319+
DETAIL:Different point dimensions in (1,2,3) and (2,3).
320320
SELECT '(1,2),(1,2,3)'::cube AS cube; -- 3
321321
ERROR: bad cube representation
322-
DETAIL:different point dimensions in (1,2) and (1,2,3)
322+
DETAIL:Different point dimensions in (1,2) and (1,2,3).
323323
SELECT '(1,2,3)ab'::cube AS cube; -- 4
324324
ERROR: bad cube representation
325325
DETAIL: syntax error at or near "a"
@@ -400,10 +400,10 @@ SELECT '(0)'::text::cube;
400400
--
401401
select '(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)'::cube;
402402
ERROR: bad cube representation
403-
DETAIL: more than 100 dimensions
403+
DETAIL:A cube cannot havemore than 100 dimensions.
404404
select '(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)'::cube;
405405
ERROR: bad cube representation
406-
DETAIL: more than 100 dimensions
406+
DETAIL:A cube cannot havemore than 100 dimensions.
407407
--
408408
-- testing the operators
409409
--

‎src/pl/plpython/expected/plpython_test.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ SELECT test_void_func1(), test_void_func1() IS NULL AS "is null";
191191

192192
SELECT test_void_func2(); -- should fail
193193
ERROR: invalid return value from plpython function
194-
DETAIL: Functions returning type "void" must return"None".
194+
DETAIL: Functions returning type "void" must return None.
195195
SELECT test_return_none(), test_return_none() IS NULL AS "is null";
196196
test_return_none | is null
197197
------------------+---------

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp