public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    input.SkipLastField();
                    break;

                case 10: {
                    Name = input.ReadString();
                    break;
                }

                case 18: {
                    TableId = input.ReadString();
                    break;
                }

                case 26: {
                    if (table_ == null)
                    {
                        table_ = new global::Google.Bigtable.Admin.Table.V1.Table();
                    }
                    input.ReadMessage(table_);
                    break;
                }

                case 34: {
                    initialSplitKeys_.AddEntriesFrom(input, _repeated_initialSplitKeys_codec);
                    break;
                }
                }
            }
        }
 public void MergeFrom(CreateTableRequest other)
 {
     if (other == null)
     {
         return;
     }
     if (other.Name.Length != 0)
     {
         Name = other.Name;
     }
     if (other.TableId.Length != 0)
     {
         TableId = other.TableId;
     }
     if (other.table_ != null)
     {
         if (table_ == null)
         {
             table_ = new global::Google.Bigtable.Admin.Table.V1.Table();
         }
         Table.MergeFrom(other.Table);
     }
     initialSplitKeys_.Add(other.initialSplitKeys_);
 }