[jira] [Issue Comment Deleted] (CASSANDRA-9083) cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f

2015-04-01 Thread Joseph Chu (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-9083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Chu updated CASSANDRA-9083:
--
Comment: was deleted

(was: I'm using Python 2.7.3)

> cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f
> ---
>
> Key: CASSANDRA-9083
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9083
> Project: Cassandra
>  Issue Type: Bug
>  Components: Tools
> Environment: 2.1.3
>Reporter: Joseph Chu
>Assignee: Tyler Hobbs
>Priority: Minor
>  Labels: cqlsh
> Fix For: 2.1.5
>
>
> Executing a COPY command from an external file using the cqlsh -f or the 
> SOURCE command results in the error:
> filename.cql:7:descriptor 'lower' requires a 'str' object but received a 
> 'unicode'
> Looks like there was a change in the cqlsh code from 2.1.2 to 2.1.3 which 
> makes use of codecs.open() instead of open(), which returns a unicode object. 
> The offending line of code that returns the error seems to be in cqlsh, line 
> 1415:
> copyoptnames = map(str.lower, parsed.get_binding('optnames', ()))



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Issue Comment Deleted] (CASSANDRA-9083) cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f

2015-04-01 Thread Joseph Chu (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-9083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Chu updated CASSANDRA-9083:
--
Comment: was deleted

(was: I'm using Python 2.7.3)

> cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f
> ---
>
> Key: CASSANDRA-9083
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9083
> Project: Cassandra
>  Issue Type: Bug
>  Components: Tools
> Environment: 2.1.3
>Reporter: Joseph Chu
>Assignee: Tyler Hobbs
>Priority: Minor
>  Labels: cqlsh
> Fix For: 2.1.5
>
>
> Executing a COPY command from an external file using the cqlsh -f or the 
> SOURCE command results in the error:
> filename.cql:7:descriptor 'lower' requires a 'str' object but received a 
> 'unicode'
> Looks like there was a change in the cqlsh code from 2.1.2 to 2.1.3 which 
> makes use of codecs.open() instead of open(), which returns a unicode object. 
> The offending line of code that returns the error seems to be in cqlsh, line 
> 1415:
> copyoptnames = map(str.lower, parsed.get_binding('optnames', ()))



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Issue Comment Deleted] (CASSANDRA-9083) cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f

2015-04-01 Thread Joseph Chu (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-9083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Chu updated CASSANDRA-9083:
--
Comment: was deleted

(was: I'm using Python 2.7.3)

> cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f
> ---
>
> Key: CASSANDRA-9083
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9083
> Project: Cassandra
>  Issue Type: Bug
>  Components: Tools
> Environment: 2.1.3
>Reporter: Joseph Chu
>Assignee: Tyler Hobbs
>Priority: Minor
>  Labels: cqlsh
> Fix For: 2.1.5
>
>
> Executing a COPY command from an external file using the cqlsh -f or the 
> SOURCE command results in the error:
> filename.cql:7:descriptor 'lower' requires a 'str' object but received a 
> 'unicode'
> Looks like there was a change in the cqlsh code from 2.1.2 to 2.1.3 which 
> makes use of codecs.open() instead of open(), which returns a unicode object. 
> The offending line of code that returns the error seems to be in cqlsh, line 
> 1415:
> copyoptnames = map(str.lower, parsed.get_binding('optnames', ()))



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Issue Comment Deleted] (CASSANDRA-9083) cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f

2015-04-01 Thread Joseph Chu (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-9083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Chu updated CASSANDRA-9083:
--
Comment: was deleted

(was: I'm using Python 2.7.3)

> cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f
> ---
>
> Key: CASSANDRA-9083
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9083
> Project: Cassandra
>  Issue Type: Bug
>  Components: Tools
> Environment: 2.1.3
>Reporter: Joseph Chu
>Assignee: Tyler Hobbs
>Priority: Minor
>  Labels: cqlsh
> Fix For: 2.1.5
>
>
> Executing a COPY command from an external file using the cqlsh -f or the 
> SOURCE command results in the error:
> filename.cql:7:descriptor 'lower' requires a 'str' object but received a 
> 'unicode'
> Looks like there was a change in the cqlsh code from 2.1.2 to 2.1.3 which 
> makes use of codecs.open() instead of open(), which returns a unicode object. 
> The offending line of code that returns the error seems to be in cqlsh, line 
> 1415:
> copyoptnames = map(str.lower, parsed.get_binding('optnames', ()))



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Issue Comment Deleted] (CASSANDRA-9083) cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f

2015-04-01 Thread Joseph Chu (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-9083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Chu updated CASSANDRA-9083:
--
Comment: was deleted

(was: I'm using Python 2.7.3)

> cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f
> ---
>
> Key: CASSANDRA-9083
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9083
> Project: Cassandra
>  Issue Type: Bug
>  Components: Tools
> Environment: 2.1.3
>Reporter: Joseph Chu
>Assignee: Tyler Hobbs
>Priority: Minor
>  Labels: cqlsh
> Fix For: 2.1.5
>
>
> Executing a COPY command from an external file using the cqlsh -f or the 
> SOURCE command results in the error:
> filename.cql:7:descriptor 'lower' requires a 'str' object but received a 
> 'unicode'
> Looks like there was a change in the cqlsh code from 2.1.2 to 2.1.3 which 
> makes use of codecs.open() instead of open(), which returns a unicode object. 
> The offending line of code that returns the error seems to be in cqlsh, line 
> 1415:
> copyoptnames = map(str.lower, parsed.get_binding('optnames', ()))



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Issue Comment Deleted] (CASSANDRA-9083) cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f

2015-04-01 Thread Joseph Chu (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-9083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Chu updated CASSANDRA-9083:
--
Comment: was deleted

(was: I'm using Python 2.7.3)

> cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f
> ---
>
> Key: CASSANDRA-9083
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9083
> Project: Cassandra
>  Issue Type: Bug
>  Components: Tools
> Environment: 2.1.3
>Reporter: Joseph Chu
>Assignee: Tyler Hobbs
>Priority: Minor
>  Labels: cqlsh
> Fix For: 2.1.5
>
>
> Executing a COPY command from an external file using the cqlsh -f or the 
> SOURCE command results in the error:
> filename.cql:7:descriptor 'lower' requires a 'str' object but received a 
> 'unicode'
> Looks like there was a change in the cqlsh code from 2.1.2 to 2.1.3 which 
> makes use of codecs.open() instead of open(), which returns a unicode object. 
> The offending line of code that returns the error seems to be in cqlsh, line 
> 1415:
> copyoptnames = map(str.lower, parsed.get_binding('optnames', ()))



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Issue Comment Deleted] (CASSANDRA-9083) cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f

2015-04-01 Thread Joseph Chu (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-9083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Chu updated CASSANDRA-9083:
--
Comment: was deleted

(was: I'm using Python 2.7.3)

> cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f
> ---
>
> Key: CASSANDRA-9083
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9083
> Project: Cassandra
>  Issue Type: Bug
>  Components: Tools
> Environment: 2.1.3
>Reporter: Joseph Chu
>Assignee: Tyler Hobbs
>Priority: Minor
>  Labels: cqlsh
> Fix For: 2.1.5
>
>
> Executing a COPY command from an external file using the cqlsh -f or the 
> SOURCE command results in the error:
> filename.cql:7:descriptor 'lower' requires a 'str' object but received a 
> 'unicode'
> Looks like there was a change in the cqlsh code from 2.1.2 to 2.1.3 which 
> makes use of codecs.open() instead of open(), which returns a unicode object. 
> The offending line of code that returns the error seems to be in cqlsh, line 
> 1415:
> copyoptnames = map(str.lower, parsed.get_binding('optnames', ()))



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Issue Comment Deleted] (CASSANDRA-9083) cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f

2015-04-01 Thread Joseph Chu (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-9083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Chu updated CASSANDRA-9083:
--
Comment: was deleted

(was: I'm using Python 2.7.3)

> cqlsh COPY functionality doesn't work together with SOURCE or with cqlsh -f
> ---
>
> Key: CASSANDRA-9083
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9083
> Project: Cassandra
>  Issue Type: Bug
>  Components: Tools
> Environment: 2.1.3
>Reporter: Joseph Chu
>Assignee: Tyler Hobbs
>Priority: Minor
>  Labels: cqlsh
> Fix For: 2.1.5
>
>
> Executing a COPY command from an external file using the cqlsh -f or the 
> SOURCE command results in the error:
> filename.cql:7:descriptor 'lower' requires a 'str' object but received a 
> 'unicode'
> Looks like there was a change in the cqlsh code from 2.1.2 to 2.1.3 which 
> makes use of codecs.open() instead of open(), which returns a unicode object. 
> The offending line of code that returns the error seems to be in cqlsh, line 
> 1415:
> copyoptnames = map(str.lower, parsed.get_binding('optnames', ()))



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)