From 4a771d0af83beccbb0a7fc9f03b22966c1292724 Mon Sep 17 00:00:00 2001 From: Vitalii Diravka Date: Sun, 23 Dec 2018 22:51:15 +0200 Subject: DRILL-6925: Unable to generate Protobuf - use ${maven.multiModuleProjectDirectory}/header to find header file from any submodule - suppress UnresolvedMavenProperty, since IDE expects that property should be set explicitly - update "kr.motd.maven:os-maven-plugin" github.com/trustin/os-maven-plugin to the latest 1.6.1 version - correction of ${user.name} propery for "maven-jar-plugin" - update "apache-rat-plugin" to solve undefined "excludeSubprojects" in IDE - regenerate Java and C++ protobuf files closes #1585 --- .../org/apache/drill/exec/proto/UserBitShared.java | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to 'protocol') diff --git a/protocol/src/main/java/org/apache/drill/exec/proto/UserBitShared.java b/protocol/src/main/java/org/apache/drill/exec/proto/UserBitShared.java index f9696394f..34fb47e5d 100644 --- a/protocol/src/main/java/org/apache/drill/exec/proto/UserBitShared.java +++ b/protocol/src/main/java/org/apache/drill/exec/proto/UserBitShared.java @@ -6800,10 +6800,20 @@ public final class UserBitShared { // optional int32 affected_rows_count = 4; /** * optional int32 affected_rows_count = 4; + * + *
+     * The value is set when result set is disabled and its value corresponds to number
+     * of rows affected by query (see JDBC java.sql.ResultSet#getUpdateCount())
+     * 
*/ boolean hasAffectedRowsCount(); /** * optional int32 affected_rows_count = 4; + * + *
+     * The value is set when result set is disabled and its value corresponds to number
+     * of rows affected by query (see JDBC java.sql.ResultSet#getUpdateCount())
+     * 
*/ int getAffectedRowsCount(); } @@ -6997,12 +7007,22 @@ public final class UserBitShared { private int affectedRowsCount_; /** * optional int32 affected_rows_count = 4; + * + *
+     * The value is set when result set is disabled and its value corresponds to number
+     * of rows affected by query (see JDBC java.sql.ResultSet#getUpdateCount())
+     * 
*/ public boolean hasAffectedRowsCount() { return ((bitField0_ & 0x00000004) == 0x00000004); } /** * optional int32 affected_rows_count = 4; + * + *
+     * The value is set when result set is disabled and its value corresponds to number
+     * of rows affected by query (see JDBC java.sql.ResultSet#getUpdateCount())
+     * 
*/ public int getAffectedRowsCount() { return affectedRowsCount_; @@ -7629,18 +7649,33 @@ public final class UserBitShared { private int affectedRowsCount_ ; /** * optional int32 affected_rows_count = 4; + * + *
+       * The value is set when result set is disabled and its value corresponds to number
+       * of rows affected by query (see JDBC java.sql.ResultSet#getUpdateCount())
+       * 
*/ public boolean hasAffectedRowsCount() { return ((bitField0_ & 0x00000008) == 0x00000008); } /** * optional int32 affected_rows_count = 4; + * + *
+       * The value is set when result set is disabled and its value corresponds to number
+       * of rows affected by query (see JDBC java.sql.ResultSet#getUpdateCount())
+       * 
*/ public int getAffectedRowsCount() { return affectedRowsCount_; } /** * optional int32 affected_rows_count = 4; + * + *
+       * The value is set when result set is disabled and its value corresponds to number
+       * of rows affected by query (see JDBC java.sql.ResultSet#getUpdateCount())
+       * 
*/ public Builder setAffectedRowsCount(int value) { bitField0_ |= 0x00000008; @@ -7650,6 +7685,11 @@ public final class UserBitShared { } /** * optional int32 affected_rows_count = 4; + * + *
+       * The value is set when result set is disabled and its value corresponds to number
+       * of rows affected by query (see JDBC java.sql.ResultSet#getUpdateCount())
+       * 
*/ public Builder clearAffectedRowsCount() { bitField0_ = (bitField0_ & ~0x00000008); -- cgit v1.2.3