From 8f1210314183dae399245a5427b799e717f625ce Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Mon, 2 Dec 2024 18:30:31 +0000 Subject: [PATCH] WL#16558, Upgrade 3rd party libraries and tools. Change-Id: I4e89ab47edd22535fcee2b67a6921cd53e4db33b --- CHANGES | 2 + src/build/misc/pom.xml | 4 +- .../java/com/mysql/cj/x/protobuf/Mysqlx.java | 35 +++---- .../mysql/cj/x/protobuf/MysqlxConnection.java | 31 +++--- .../com/mysql/cj/x/protobuf/MysqlxCrud.java | 99 ++++++++++--------- .../com/mysql/cj/x/protobuf/MysqlxCursor.java | 27 ++--- .../mysql/cj/x/protobuf/MysqlxDatatypes.java | 43 ++++---- .../com/mysql/cj/x/protobuf/MysqlxExpect.java | 31 +++--- .../com/mysql/cj/x/protobuf/MysqlxExpr.java | 51 +++++----- .../com/mysql/cj/x/protobuf/MysqlxNotice.java | 51 +++++----- .../mysql/cj/x/protobuf/MysqlxPrepare.java | 27 ++--- .../mysql/cj/x/protobuf/MysqlxResultset.java | 43 ++++---- .../mysql/cj/x/protobuf/MysqlxSession.java | 27 ++--- .../com/mysql/cj/x/protobuf/MysqlxSql.java | 15 +-- 14 files changed, 250 insertions(+), 236 deletions(-) diff --git a/CHANGES b/CHANGES index 5c9e39229..02a25dee5 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,8 @@ Version 9.2.0 + - WL#16558, Upgrade 3rd party libraries and tools. + - Fix for Bug#37125271, RPM depends on java-headless 1:1.8.0 which makes java8 unnessessarily be installed. - Fix for Bug#115586 (Bug#36850047), When upgrading to mysql connetor/j-8.4.0, creating a connection becomes too slow. diff --git a/src/build/misc/pom.xml b/src/build/misc/pom.xml index e1cc33f53..915df4ed0 100644 --- a/src/build/misc/pom.xml +++ b/src/build/misc/pom.xml @@ -62,13 +62,13 @@ com.google.protobuf protobuf-java - 4.26.1 + 4.29.0 com.oracle.oci.sdk oci-java-sdk-common - 3.41.2 + 3.54.0 true diff --git a/src/generated/java/com/mysql/cj/x/protobuf/Mysqlx.java b/src/generated/java/com/mysql/cj/x/protobuf/Mysqlx.java index 73a381263..abd4d5c5d 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/Mysqlx.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/Mysqlx.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class Mysqlx { private Mysqlx() {} @@ -30,8 +31,8 @@ private Mysqlx() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Mysqlx.class.getName()); } @@ -72,8 +73,8 @@ public static final class ClientMessages extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ClientMessages.class.getName()); } @@ -204,8 +205,8 @@ public enum Type com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Type.class.getName()); } @@ -750,8 +751,8 @@ public static final class ServerMessages extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ServerMessages.class.getName()); } @@ -846,8 +847,8 @@ public enum Type com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Type.class.getName()); } @@ -1353,8 +1354,8 @@ public static final class Ok extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Ok.class.getName()); } @@ -1974,8 +1975,8 @@ public static final class Error extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Error.class.getName()); } @@ -2021,8 +2022,8 @@ public enum Severity com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Severity.class.getName()); } diff --git a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxConnection.java b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxConnection.java index fe5bd62f6..c40cd2d51 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxConnection.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxConnection.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx_connection.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class MysqlxConnection { private MysqlxConnection() {} @@ -30,8 +31,8 @@ private MysqlxConnection() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", MysqlxConnection.class.getName()); } @@ -99,8 +100,8 @@ public static final class Capability extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Capability.class.getName()); } @@ -873,8 +874,8 @@ public static final class Capabilities extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Capabilities.class.getName()); } @@ -1614,8 +1615,8 @@ public static final class CapabilitiesGet extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", CapabilitiesGet.class.getName()); } @@ -2003,8 +2004,8 @@ public static final class CapabilitiesSet extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", CapabilitiesSet.class.getName()); } @@ -2593,8 +2594,8 @@ public static final class Close extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Close.class.getName()); } @@ -3001,8 +3002,8 @@ public static final class Compression extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Compression.class.getName()); } diff --git a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxCrud.java b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxCrud.java index 95bda2432..585b99e76 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxCrud.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxCrud.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx_crud.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class MysqlxCrud { private MysqlxCrud() {} @@ -30,8 +31,8 @@ private MysqlxCrud() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", MysqlxCrud.class.getName()); } @@ -68,8 +69,8 @@ public enum DataModel com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", DataModel.class.getName()); } @@ -195,8 +196,8 @@ public enum ViewAlgorithm com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ViewAlgorithm.class.getName()); } @@ -333,8 +334,8 @@ public enum ViewSqlSecurity com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ViewSqlSecurity.class.getName()); } @@ -461,8 +462,8 @@ public enum ViewCheckOption com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ViewCheckOption.class.getName()); } @@ -630,8 +631,8 @@ public static final class Column extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Column.class.getName()); } @@ -1742,8 +1743,8 @@ public static final class Projection extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Projection.class.getName()); } @@ -2610,8 +2611,8 @@ public static final class Collection extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Collection.class.getName()); } @@ -3340,8 +3341,8 @@ public static final class Limit extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Limit.class.getName()); } @@ -4000,8 +4001,8 @@ public static final class LimitExpr extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", LimitExpr.class.getName()); } @@ -4900,8 +4901,8 @@ public static final class Order extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Order.class.getName()); } @@ -4945,8 +4946,8 @@ public enum Direction com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Direction.class.getName()); } @@ -5763,8 +5764,8 @@ public static final class UpdateOperation extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", UpdateOperation.class.getName()); } @@ -5864,8 +5865,8 @@ public enum UpdateType com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", UpdateType.class.getName()); } @@ -7420,8 +7421,8 @@ public static final class Find extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Find.class.getName()); } @@ -7479,8 +7480,8 @@ public enum RowLock com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", RowLock.class.getName()); } @@ -7602,8 +7603,8 @@ public enum RowLockOptions com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", RowLockOptions.class.getName()); } @@ -11691,8 +11692,8 @@ public static final class Insert extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Insert.class.getName()); } @@ -11764,8 +11765,8 @@ public static final class TypedRow extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", TypedRow.class.getName()); } @@ -15002,8 +15003,8 @@ public static final class Update extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Update.class.getName()); } @@ -18119,8 +18120,8 @@ public static final class Delete extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Delete.class.getName()); } @@ -20744,8 +20745,8 @@ public static final class CreateView extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", CreateView.class.getName()); } @@ -22742,8 +22743,8 @@ public static final class ModifyView extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ModifyView.class.getName()); } @@ -24477,8 +24478,8 @@ public static final class DropView extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", DropView.class.getName()); } diff --git a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxCursor.java b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxCursor.java index b56b689c2..8e30283cb 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxCursor.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxCursor.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx_cursor.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class MysqlxCursor { private MysqlxCursor() {} @@ -30,8 +31,8 @@ private MysqlxCursor() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", MysqlxCursor.class.getName()); } @@ -144,8 +145,8 @@ public static final class Open extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Open.class.getName()); } @@ -211,8 +212,8 @@ public static final class OneOfMessage extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", OneOfMessage.class.getName()); } @@ -252,8 +253,8 @@ public enum Type com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Type.class.getName()); } @@ -1860,8 +1861,8 @@ public static final class Fetch extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Fetch.class.getName()); } @@ -2507,8 +2508,8 @@ public static final class Close extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Close.class.getName()); } diff --git a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxDatatypes.java b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxDatatypes.java index 0ba572cc9..d729bacb4 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxDatatypes.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxDatatypes.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx_datatypes.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class MysqlxDatatypes { private MysqlxDatatypes() {} @@ -30,8 +31,8 @@ private MysqlxDatatypes() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", MysqlxDatatypes.class.getName()); } @@ -172,8 +173,8 @@ public static final class Scalar extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Scalar.class.getName()); } @@ -241,8 +242,8 @@ public enum Type com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Type.class.getName()); } @@ -399,8 +400,8 @@ public static final class String extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", String.class.getName()); } @@ -980,8 +981,8 @@ public static final class Octets extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Octets.class.getName()); } @@ -2885,8 +2886,8 @@ public static final class Object extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Object.class.getName()); } @@ -2959,8 +2960,8 @@ public static final class ObjectField extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ObjectField.class.getName()); } @@ -4414,8 +4415,8 @@ public static final class Array extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Array.class.getName()); } @@ -5207,8 +5208,8 @@ public static final class Any extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Any.class.getName()); } @@ -5256,8 +5257,8 @@ public enum Type com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Type.class.getName()); } diff --git a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxExpect.java b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxExpect.java index b46dd42df..c094897f1 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxExpect.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxExpect.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx_expect.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class MysqlxExpect { private MysqlxExpect() {} @@ -30,8 +31,8 @@ private MysqlxExpect() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", MysqlxExpect.class.getName()); } @@ -106,8 +107,8 @@ public static final class Open extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Open.class.getName()); } @@ -160,8 +161,8 @@ public enum CtxOperation com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", CtxOperation.class.getName()); } @@ -303,8 +304,8 @@ public static final class Condition extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Condition.class.getName()); } @@ -365,8 +366,8 @@ public enum Key com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Key.class.getName()); } @@ -495,8 +496,8 @@ public enum ConditionOperation com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ConditionOperation.class.getName()); } @@ -2011,8 +2012,8 @@ public static final class Close extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Close.class.getName()); } diff --git a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxExpr.java b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxExpr.java index d995a4a37..fcc2fba00 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxExpr.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxExpr.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx_expr.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class MysqlxExpr { private MysqlxExpr() {} @@ -30,8 +31,8 @@ private MysqlxExpr() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", MysqlxExpr.class.getName()); } @@ -212,8 +213,8 @@ public static final class Expr extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Expr.class.getName()); } @@ -282,8 +283,8 @@ public enum Type com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Type.class.getName()); } @@ -2336,8 +2337,8 @@ public static final class Identifier extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Identifier.class.getName()); } @@ -3099,8 +3100,8 @@ public static final class DocumentPathItem extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", DocumentPathItem.class.getName()); } @@ -3177,8 +3178,8 @@ public enum Type com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Type.class.getName()); } @@ -4178,8 +4179,8 @@ public static final class ColumnIdentifier extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ColumnIdentifier.class.getName()); } @@ -5692,8 +5693,8 @@ public static final class FunctionCall extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", FunctionCall.class.getName()); } @@ -6850,8 +6851,8 @@ public static final class Operator extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Operator.class.getName()); } @@ -7924,8 +7925,8 @@ public static final class Object extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Object.class.getName()); } @@ -8022,8 +8023,8 @@ public static final class ObjectField extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ObjectField.class.getName()); } @@ -9673,8 +9674,8 @@ public static final class Array extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Array.class.getName()); } diff --git a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxNotice.java b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxNotice.java index c63b62867..d893798f2 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxNotice.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxNotice.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx_notice.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class MysqlxNotice { private MysqlxNotice() {} @@ -30,8 +31,8 @@ private MysqlxNotice() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", MysqlxNotice.class.getName()); } @@ -130,8 +131,8 @@ public static final class Frame extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Frame.class.getName()); } @@ -180,8 +181,8 @@ public enum Scope com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Scope.class.getName()); } @@ -301,8 +302,8 @@ public enum Type com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Type.class.getName()); } @@ -1194,8 +1195,8 @@ public static final class Warning extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Warning.class.getName()); } @@ -1244,8 +1245,8 @@ public enum Level com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Level.class.getName()); } @@ -2209,8 +2210,8 @@ public static final class SessionVariableChanged extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", SessionVariableChanged.class.getName()); } @@ -3105,8 +3106,8 @@ public static final class SessionStateChanged extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", SessionStateChanged.class.getName()); } @@ -3191,8 +3192,8 @@ public enum Parameter com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Parameter.class.getName()); } @@ -4306,8 +4307,8 @@ public static final class GroupReplicationStateChanged extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", GroupReplicationStateChanged.class.getName()); } @@ -4359,8 +4360,8 @@ public enum Type com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Type.class.getName()); } @@ -5129,8 +5130,8 @@ public static final class ServerHello extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ServerHello.class.getName()); } diff --git a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxPrepare.java b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxPrepare.java index e288e382f..7b2164b11 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxPrepare.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxPrepare.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx_prepare.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class MysqlxPrepare { private MysqlxPrepare() {} @@ -30,8 +31,8 @@ private MysqlxPrepare() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", MysqlxPrepare.class.getName()); } @@ -127,8 +128,8 @@ public static final class Prepare extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Prepare.class.getName()); } @@ -254,8 +255,8 @@ public static final class OneOfMessage extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", OneOfMessage.class.getName()); } @@ -316,8 +317,8 @@ public enum Type com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Type.class.getName()); } @@ -2674,8 +2675,8 @@ public static final class Execute extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Execute.class.getName()); } @@ -3786,8 +3787,8 @@ public static final class Deallocate extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Deallocate.class.getName()); } diff --git a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxResultset.java b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxResultset.java index 912168050..13b4f9be8 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxResultset.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxResultset.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx_resultset.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class MysqlxResultset { private MysqlxResultset() {} @@ -30,8 +31,8 @@ private MysqlxResultset() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", MysqlxResultset.class.getName()); } @@ -85,8 +86,8 @@ public enum ContentType_BYTES com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ContentType_BYTES.class.getName()); } @@ -205,8 +206,8 @@ public enum ContentType_DATETIME com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ContentType_DATETIME.class.getName()); } @@ -312,8 +313,8 @@ public static final class FetchDoneMoreOutParams extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", FetchDoneMoreOutParams.class.getName()); } @@ -677,8 +678,8 @@ public static final class FetchDoneMoreResultsets extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", FetchDoneMoreResultsets.class.getName()); } @@ -1042,8 +1043,8 @@ public static final class FetchDone extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", FetchDone.class.getName()); } @@ -1407,8 +1408,8 @@ public static final class FetchSuspended extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", FetchSuspended.class.getName()); } @@ -2384,8 +2385,8 @@ public static final class ColumnMetaData extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", ColumnMetaData.class.getName()); } @@ -2471,8 +2472,8 @@ public enum FieldType com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", FieldType.class.getName()); } @@ -4838,8 +4839,8 @@ public static final class Row extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Row.class.getName()); } diff --git a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxSession.java b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxSession.java index 779e67008..0fddb114e 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxSession.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxSession.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx_session.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class MysqlxSession { private MysqlxSession() {} @@ -30,8 +31,8 @@ private MysqlxSession() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", MysqlxSession.class.getName()); } @@ -135,8 +136,8 @@ public static final class AuthenticateStart extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", AuthenticateStart.class.getName()); } @@ -964,8 +965,8 @@ public static final class AuthenticateContinue extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", AuthenticateContinue.class.getName()); } @@ -1481,8 +1482,8 @@ public static final class AuthenticateOk extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", AuthenticateOk.class.getName()); } @@ -1992,8 +1993,8 @@ public static final class Reset extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Reset.class.getName()); } @@ -2490,8 +2491,8 @@ public static final class Close extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", Close.class.getName()); } diff --git a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxSql.java b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxSql.java index 1f991fd9f..be0391888 100644 --- a/src/generated/java/com/mysql/cj/x/protobuf/MysqlxSql.java +++ b/src/generated/java/com/mysql/cj/x/protobuf/MysqlxSql.java @@ -21,8 +21,9 @@ package com.mysql.cj.x.protobuf; // Generated by the protocol buffer compiler. DO NOT EDIT! +// NO CHECKED-IN PROTOBUF GENCODE // source: mysqlx_sql.proto -// Protobuf Java Version: 4.26.1 +// Protobuf Java Version: 4.29.0 public final class MysqlxSql { private MysqlxSql() {} @@ -30,8 +31,8 @@ private MysqlxSql() {} com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", MysqlxSql.class.getName()); } @@ -190,8 +191,8 @@ public static final class StmtExecute extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", StmtExecute.class.getName()); } @@ -1469,8 +1470,8 @@ public static final class StmtExecuteOk extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 26, - /* patch= */ 1, + /* minor= */ 29, + /* patch= */ 0, /* suffix= */ "", StmtExecuteOk.class.getName()); }