Esempio n. 1
0
    public AlterTableRequest(AlterTableRequestPB request)
    {
        MethodName = "AlterTable";
        _request   = request;

        // We don't need to set required feature ADD_DROP_RANGE_PARTITIONS here,
        // as it's supported in Kudu 1.3, the oldest version this client supports.
    }
Esempio n. 2
0
 public AlterTableBuilder(KuduTable table)
 {
     _table   = table;
     _request = new AlterTableRequestPB
     {
         Table = new TableIdentifierPB
         {
             TableId = _table.SchemaPb.TableId
         }
     };
 }