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
The following was added to the CqlIdentifierUtil class
CqlIdentifierUtil
/** Remove the quotes from the identifier */ public static String externalRepresentation(CqlIdentifier identifier) { return identifier.asInternal(); }
But we already have
public static String cqlIdentifierToStringForUser(CqlIdentifier identifier) { return identifier.asCql(true); }
Why do we want to remove the double quotes ? And if we added this function did we consider removing the other one ?
The text was updated successfully, but these errors were encountered:
If we do need both, i.e. one way for messages and one for JSON fields names, then we should improve the method names to make it clearer
Sorry, something went wrong.
Suggestion from chat with @tatu-at-datastax for name such as
toCql toJSON toMessage fromJSON fromCQL
maheshrajamani
No branches or pull requests
The following was added to the
CqlIdentifierUtil
classBut we already have
Why do we want to remove the double quotes ? And if we added this function did we consider removing the other one ?
The text was updated successfully, but these errors were encountered: