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
Here is the point:
ShardingEncryptorStrategy /** * Get assisted query column. * * @param logicTableName logic table name * @param columnName column name * @return assisted query column */ public Optional<String> getAssistedQueryColumn(final String logicTableName, final String columnName) { for (ColumnNode each : columns) { ColumnNode target = new ColumnNode(logicTableName, columnName); if (each.equals(target)) { return Optional.of(assistedQueryColumns.get(columns.indexOf(target)).getColumnName()); } } return Optional.absent(); }
The text was updated successfully, but these errors were encountered:
tristaZero
Successfully merging a pull request may close this issue.
Here is the point:
The text was updated successfully, but these errors were encountered: