Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
4e76fc6a
Commit
4e76fc6a
authored
Feb 14, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZSQLCatalog: fail loudly searching for dict iterators ( TODO: make this the default ? )
parent
192b02ab
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
product/ZSQLCatalog/Operator/OperatorBase.py
product/ZSQLCatalog/Operator/OperatorBase.py
+8
-0
No files found.
product/ZSQLCatalog/Operator/OperatorBase.py
View file @
4e76fc6a
...
...
@@ -33,6 +33,7 @@ from zLOG import LOG
from
DateTime
import
DateTime
from
Products.ZSQLCatalog.interfaces.operator
import
IOperator
from
Products.ZSQLCatalog.Utils
import
sqlquote
as
escapeString
from
AccessControl.ZopeGuards
import
SafeIter
from
zope.interface.verify
import
verifyClass
from
zope.interface
import
implementer
...
...
@@ -51,6 +52,9 @@ def valueDefaultRenderer(value):
def
valueNoneRenderer
(
value
):
return
'NULL'
def
valueUnsupportedRenderer
(
value
):
raise
TypeError
(
"ZSQCatalog does not support %s (%s)"
%
(
type
(
value
),
value
))
value_renderer
=
{
int
:
str
,
float
:
valueFloatRenderer
,
...
...
@@ -58,6 +62,10 @@ value_renderer = {
None
.
__class__
:
valueNoneRenderer
,
bool
:
int
,
str
:
escapeString
,
SafeIter
:
valueUnsupportedRenderer
,
type
(
six
.
iterkeys
({})):
valueUnsupportedRenderer
,
type
(
six
.
iteritems
({})):
valueUnsupportedRenderer
,
type
(
six
.
itervalues
({})):
valueUnsupportedRenderer
,
}
if
six
.
PY2
:
value_renderer
[
long
]
=
str
...
...
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