spaces are ignored in attributes' names in rename
git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@20 014f5005-505e-4b48-8d0a-63407b615a7c
This commit is contained in:
parent
b61625f10d
commit
d2d71e8b53
@ -103,7 +103,7 @@ def parse(expr):
|
||||
elif symbol== "σ": #Selection
|
||||
res="%s.selection(\"%s\")" % (internal,parameters)
|
||||
elif symbol=="ρ": #Rename
|
||||
params=parameters.replace(",","\",\"").replace("➡","\",\"")
|
||||
params=parameters.replace(",","\",\"").replace("➡","\",\"").replace(" ","")
|
||||
res="%s.rename(\"%s\")" % (internal,params)
|
||||
#Last complex operator is replaced with it's python code
|
||||
#Next cycle will do the same to the new last unparsed complex operator
|
||||
|
Loading…
x
Reference in New Issue
Block a user