We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
contrib_regression=# select format('CREATE SEQUENCE %s START WITH %d', 'hola', 3+2); ERROR: unrecognized conversion type specifier "d" contrib_regression=# select format('CREATE SEQUENCE %s START WITH %i', 'hola', 3+2); ERROR: unrecognized conversion type specifier "i" contrib_regression=# select format('CREATE SEQUENCE %s START WITH %s', 'hola', 3+2);
This affects current code: https://github.com/CartoDB/cartodb-postgresql/blob/master/scripts-available/CDB_CartodbfyTable.sql#L168
The text was updated successfully, but these errors were encountered:
http://www.postgresql.org/docs/9.4/static/functions-string.html#FUNCTIONS-STRING-FORMAT
Sorry, something went wrong.
Also this ticket needs a test case to force the execution path through the faulty code.
gfiorav
No branches or pull requests
This affects current code: https://github.com/CartoDB/cartodb-postgresql/blob/master/scripts-available/CDB_CartodbfyTable.sql#L168
The text was updated successfully, but these errors were encountered: