phoenix5-spark3/src/main/java/org/apache/phoenix/spark/sql/connector/writer/PhoenixDataSourceWriteOptions.java [38:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private PhoenixDataSourceWriteOptions(String tableName, String zkUrl, String scn,
                                          String tenantId, StructType schema, boolean skipNormalizingIdentifier,
                                          Properties overriddenProps) {
        if (tableName == null) {
            throw new NullPointerException();
        }
        if (zkUrl == null) {
            throw new NullPointerException();
        }
        if (schema == null) {
            throw new NullPointerException();
        }
        if (overriddenProps == null) {
            throw new NullPointerException();
        }
        this.tableName = tableName;
        this.zkUrl = zkUrl;
        this.scn = scn;
        this.tenantId = tenantId;
        this.schema = schema;
        this.skipNormalizingIdentifier = skipNormalizingIdentifier;
        this.overriddenProps = overriddenProps;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



phoenix5-spark/src/main/java/org/apache/phoenix/spark/datasource/v2/writer/PhoenixDataSourceWriteOptions.java [35:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private PhoenixDataSourceWriteOptions(String tableName, String zkUrl, String scn,
            String tenantId, StructType schema, boolean skipNormalizingIdentifier,
            Properties overriddenProps) {
        if (tableName == null) {
            throw new NullPointerException();
        }
        if (zkUrl == null) {
            throw new NullPointerException();
        }
        if (schema == null) {
            throw new NullPointerException();
        }
        if (overriddenProps == null) {
            throw new NullPointerException();
        }
        this.tableName = tableName;
        this.zkUrl = zkUrl;
        this.scn = scn;
        this.tenantId = tenantId;
        this.schema = schema;
        this.skipNormalizingIdentifier = skipNormalizingIdentifier;
        this.overriddenProps = overriddenProps;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



