You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2018/11/20 18:04:04 UTC

[11/50] [abbrv] ignite git commit: IGNITE-10294: SQL: Set proper subjectId in SqlFielsQuery event. This closes #5408.

IGNITE-10294: SQL: Set proper subjectId in SqlFielsQuery event. This closes #5408.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/16dc88fc
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/16dc88fc
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/16dc88fc

Branch: refs/heads/ignite-9720
Commit: 16dc88fc228eb15669922e3878badc8ffc16dda5
Parents: 7076f42
Author: devozerov <pp...@gmail.com>
Authored: Sat Nov 17 13:48:24 2018 +0300
Committer: devozerov <pp...@gmail.com>
Committed: Sat Nov 17 13:48:24 2018 +0300

----------------------------------------------------------------------
 .../ignite/internal/processors/query/GridQueryProcessor.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/16dc88fc/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java
index 30c28b1..c4f0197 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java
@@ -2469,7 +2469,7 @@ public class GridQueryProcessor extends GridProcessorAdapter {
                 null,
                 null,
                 params,
-                null,
+                ctx.localNodeId(),
                 null));
         }
     }