dan-s1 commented on code in PR #8728:
URL: https://github.com/apache/nifi/pull/8728#discussion_r1595765725


##########
nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/db/impl/ImpalaDatabaseAdapter.java:
##########
@@ -0,0 +1,116 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.nifi.processors.standard.db.impl;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.List;
+import java.util.stream.Collectors;
+import org.apache.nifi.processors.standard.db.ColumnDescription;
+import org.apache.nifi.util.StringUtils;
+
+/**
+ * A generic database adapter that generates Impala compatible SQL.
+ */
+public class ImpalaDatabaseAdapter extends GenericDatabaseAdapter {
+
+    private static final String QUOTE_MARK = "`";
+
+    @Override
+    public String getName() {
+        return "Impala";
+    }
+
+    @Override
+    public String getDescription() {
+        return "Generates Impala compatible SQL";
+    }
+
+    @Override
+    public String unwrapIdentifier(String identifier) {
+        // Removes double quotes and back-ticks.
+        return identifier == null ? null : identifier.replaceAll("[\"`]", "");
+    }
+
+    @Override
+    public boolean supportsUpsert() {
+        return true;
+    }
+
+    @Override
+    public String getUpsertStatement(String table, List<String> columnNames, 
Collection<String> uniqueKeyColumnNames) {
+        if (StringUtils.isEmpty(table)) {
+            throw new IllegalArgumentException("Table name cannot be null or 
blank");
+        }
+        if (columnNames == null || columnNames.isEmpty()) {
+            throw new IllegalArgumentException("Column names cannot be null or 
empty");
+        }
+        if (uniqueKeyColumnNames == null || uniqueKeyColumnNames.isEmpty()) {
+            throw new IllegalArgumentException("Key column names cannot be 
null or empty");
+        }
+
+        final String columns = String.join(", ", columnNames);
+
+        final String parameterizedInsertValues = columnNames.stream()
+                .map(__ -> "?")
+                .collect(Collectors.joining(", "));
+
+        return "UPSERT INTO " + table + "(" + columns + ")" + " VALUES " + "(" 
+ parameterizedInsertValues + ")";
+    }
+
+    @Override
+    public String getTableQuoteString() {
+        return QUOTE_MARK;
+    }
+
+    @Override
+    public String getColumnQuoteString() {
+        return QUOTE_MARK;
+    }
+
+    @Override
+    public boolean supportsCreateTableIfNotExists() {
+        return true;
+    }
+
+    @Override
+    public List<String> getAlterTableStatements(final String tableName, final 
List<ColumnDescription> columnsToAdd, final boolean quoteTableName, final 
boolean quoteColumnNames) {
+        List<String> columnsAndDatatypes = new 
ArrayList<>(columnsToAdd.size());
+        for (ColumnDescription column : columnsToAdd) {
+            String dataType = getSQLForDataType(column.getDataType());
+            columnsAndDatatypes.add(
+                    (quoteColumnNames ? getColumnQuoteString() : 
StringUtils.EMPTY)
+                    + column.getColumnName()
+                    + (quoteColumnNames ? getColumnQuoteString() : 
StringUtils.EMPTY)
+                    + " "
+                    + dataType
+            );
+        }
+
+        StringBuilder alterTableStatement = new StringBuilder();
+        return Collections.singletonList(
+                alterTableStatement.append("ALTER TABLE ")
+                .append(quoteTableName ? getTableQuoteString() : 
StringUtils.EMPTY)
+                .append(tableName)
+                .append(quoteTableName ? getTableQuoteString() : 
StringUtils.EMPTY)
+                .append(" ADD COLUMNS ")
+                .append("(").append(String.join(", ", 
columnsAndDatatypes)).append(")")
+                .toString()
+        );

Review Comment:
   I believe this can be simplified by using streams to convert from 
`ColumnDescription `to `String` and without having to call the tertiary 
statements twice to determine whether to quote. (I am sorry for the formatting 
of the suggestion as it looks different than what I had typed)
   
   ```suggestion
    final List<String> columnsAndDatatypes = columnsToAdd.stream()
    .map(column-> (quoteColumnNames ? getColumnQuoteString() + 
column.getColumnName() + getColumnQuoteString() : column.getColumnName()) + " " 
+  getSQLForDataType(column.getDataType()))
    .collect(Collectors.toList());
    
    final String alterTableStatement = "ALTER TABLE " + (quoteTableName ?  
getTableQuoteString() + tableName + getTableQuoteString() :  tableName ) + " 
ADD COLUMNS " + "(" + String.join(", ", columnsAndDatatypes) + ")";
                               
   return Collections.singletonList(alterTableStatement);
   ```



##########
nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/java/org/apache/nifi/processors/standard/db/impl/TestImpalaDatabaseAdapter.java:
##########
@@ -0,0 +1,99 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.nifi.processors.standard.db.impl;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertThrows;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.List;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+
+public class TestImpalaDatabaseAdapter {
+
+    private ImpalaDatabaseAdapter testSubject;
+
+    @BeforeEach
+    public void setUp() throws Exception {
+        testSubject = new ImpalaDatabaseAdapter();
+    }
+
+    @Test
+    public void testSupportsUpsert() {
+        assertTrue(testSubject.supportsUpsert(), 
testSubject.getClass().getSimpleName() + " should support upsert");
+    }
+
+    @Test
+    public void testGetUpsertStatementWithNullTableName() {
+        testGetUpsertStatement(null, Collections.singletonList("notEmpty"), 
Collections.singletonList("notEmpty"), new IllegalArgumentException("Table name 
cannot be null or blank"));
+    }
+
+    @Test
+    public void testGetUpsertStatementWithBlankTableName() {
+        testGetUpsertStatement("", Collections.singletonList("notEmpty"), 
Collections.singletonList("notEmpty"), new IllegalArgumentException("Table name 
cannot be null or blank"));
+    }
+
+    @Test
+    public void testGetUpsertStatementWithNullColumnNames() {
+        testGetUpsertStatement("notEmpty", null, 
Collections.singletonList("notEmpty"), new IllegalArgumentException("Column 
names cannot be null or empty"));
+    }
+
+    @Test
+    public void testGetUpsertStatementWithEmptyColumnNames() {
+        testGetUpsertStatement("notEmpty", Collections.emptyList(), 
Collections.singletonList("notEmpty"), new IllegalArgumentException("Column 
names cannot be null or empty"));
+    }
+
+    @Test
+    public void testGetUpsertStatementWithNullKeyColumnNames() {
+        testGetUpsertStatement("notEmpty", 
Collections.singletonList("notEmpty"), null, new IllegalArgumentException("Key 
column names cannot be null or empty"));
+    }
+
+    @Test
+    public void testGetUpsertStatementWithEmptyKeyColumnNames() {
+        testGetUpsertStatement("notEmpty", 
Collections.singletonList("notEmpty"), Collections.emptyList(), new 
IllegalArgumentException("Key column names cannot be null or empty"));
+    }
+
+    @Test
+    public void testGetUpsertStatement() {
+        String tableName = "table";
+        List<String> columnNames = Arrays.asList("column1", "column2", 
"column3", "column4");
+        Collection<String> uniqueKeyColumnNames = Arrays.asList("column2", 
"column4");
+
+        String expected = "UPSERT INTO" +
+                " table(column1, column2, column3, column4) VALUES (?, ?, ?, 
?)";
+
+        testGetUpsertStatement(tableName, columnNames, uniqueKeyColumnNames, 
expected);
+    }
+
+    private void testGetUpsertStatement(String tableName, List<String> 
columnNames, Collection<String> uniqueKeyColumnNames, IllegalArgumentException 
expected) {
+        final IllegalArgumentException e = 
assertThrows(IllegalArgumentException.class, () -> {
+            testGetUpsertStatement(tableName, columnNames, 
uniqueKeyColumnNames, (String) null);
+        });
+        assertEquals(expected.getMessage(), e.getMessage());
+    }
+
+    private void testGetUpsertStatement(String tableName, List<String> 
columnNames, Collection<String> uniqueKeyColumnNames, String expected) {
+        String actual = testSubject.getUpsertStatement(tableName, columnNames, 
uniqueKeyColumnNames);
+
+        assertEquals(expected, actual);
+    }
+

Review Comment:
   ```suggestion
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@nifi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to