flume-kudu-sink/src/main/java/org/apache/flume/sink/kudu/AvroKuduOperationsProducer.java [182:190]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Operation op;
    switch (operation.toLowerCase(Locale.ENGLISH)) {
      case "upsert":
        op = table.newUpsert();
        break;
      case "insert":
        op = table.newInsert();
        break;
      default:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flume-kudu-sink/src/main/java/org/apache/flume/sink/kudu/SimpleKeyedKuduOperationsProducer.java [110:118]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Operation op;
      switch (operation.toLowerCase(Locale.ENGLISH)) {
        case "upsert":
          op = table.newUpsert();
          break;
        case "insert":
          op = table.newInsert();
          break;
        default:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



