Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

oak-online-alter-table bug with solution (expected string, long found) #21

Open
GoogleCodeExporter opened this issue Mar 14, 2015 · 0 comments

Comments

@GoogleCodeExporter
Copy link

What steps will reproduce the problem?
I was simply running an oak-online-alter-table with my development database.  
My schema may be a little out of the ordinary, but they script would crash 
with: 

<type 'exceptions.Exception'> sequence item 1: expected string, long found

I pulled from latest, currently at revision 188.

The solution is simple:

replace line 746:
verbose("%s range (%s), (%s), progress: N/A" % (description, 
",".join(unique_key_range_start_values), ",".join(unique_key_range_end_values)))

with:
verbose("%s range (%s), (%s), progress: N/A" % (description, 
to_string_list(unique_key_range_start_values), 
to_string_list(unique_key_range_end_values)))

Original issue reported on code.google.com by [email protected] on 14 Oct 2011 at 10:21

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant