ygerzhedovich commented on code in PR #1831:
URL: https://github.com/apache/ignite-3/pull/1831#discussion_r1147578330
##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/api/SessionBuilderImpl.java:
##########
@@ -123,26 +125,21 @@ public SessionBuilder defaultPageSize(int pageSize) {
/** {@inheritDoc} */
@Override
public SessionBuilder property(String name, @Nullable Object value) {
- var prop = QueryProperty.byName(name);
-
- if (prop != null) {
- props.put(prop, value);
- }
+ props.put(name, value);
Review Comment:
What reason to have that properties? It not use anywhere
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]