Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
d36c38c3
Commit
d36c38c3
authored
Nov 25, 2014
by
Toshio Kuratomi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Exception message changes
parent
199d6c0b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test/units/TestModuleUtilsDatabase.py
+3
-3
No files found.
test/units/TestModuleUtilsDatabase.py
View file @
d36c38c3
...
@@ -63,9 +63,9 @@ class TestQuotePgIdentifier(object):
...
@@ -63,9 +63,9 @@ class TestQuotePgIdentifier(object):
(
'"test"."too"."many"."dots"'
,
'schema'
):
"PostgreSQL does not support schema with more than 2 dots"
,
(
'"test"."too"."many"."dots"'
,
'schema'
):
"PostgreSQL does not support schema with more than 2 dots"
,
(
'"test"."too"."many"."dots"'
,
'table'
):
"PostgreSQL does not support table with more than 3 dots"
,
(
'"test"."too"."many"."dots"'
,
'table'
):
"PostgreSQL does not support table with more than 3 dots"
,
(
'"test"."too"."many"."dots"."for"."column"'
,
'column'
):
"PostgreSQL does not support column with more than 4 dots"
,
(
'"test"."too"."many"."dots"."for"."column"'
,
'column'
):
"PostgreSQL does not support column with more than 4 dots"
,
(
'"table "invalid" double quote"'
,
'table'
):
'User escaped identifiers must escape extra
double
quotes'
,
(
'"table "invalid" double quote"'
,
'table'
):
'User escaped identifiers must escape extra quotes'
,
(
'"schema "invalid"""."table "invalid"'
,
'table'
):
'User escaped identifiers must escape extra
double
quotes'
,
(
'"schema "invalid"""."table "invalid"'
,
'table'
):
'User escaped identifiers must escape extra quotes'
,
(
'"schema."table"'
,
'table'
):
'User escaped identifiers must escape extra
double
quotes'
,
(
'"schema."table"'
,
'table'
):
'User escaped identifiers must escape extra quotes'
,
(
'"schema".'
,
'table'
):
'Identifier name unspecified or unquoted trailing dot'
,
(
'"schema".'
,
'table'
):
'Identifier name unspecified or unquoted trailing dot'
,
}
}
...
...
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