connectors/rocketmq-connect-doris/src/main/java/org/apache/rocketmq/connect/doris/util/ExpressionBuilder.java [35:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        void appendTo(
                ExpressionBuilder builder,
                boolean useQuotes
        );

        /**
         * Append this object to the specified builder.
         *
         * @param builder   the builder to use; may not be null
         * @param useQuotes whether quotes should be used for this object
         */
        default void appendTo(
                ExpressionBuilder builder,
                QuoteMethod useQuotes
        ) {
            switch (useQuotes) {
                case ALWAYS:
                    appendTo(builder, true);
                    break;
                case NEVER:
                default:
                    // do nothing
                    break;
            }
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



connectors/rocketmq-connect-jdbc/src/main/java/org/apache/rocketmq/connect/jdbc/util/ExpressionBuilder.java [26:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        void appendTo(
            ExpressionBuilder builder,
            boolean useQuotes
        );
        default void appendTo(
            ExpressionBuilder builder,
            QuoteMethod useQuotes
        ) {
            switch (useQuotes) {
                case ALWAYS:
                    appendTo(builder, true);
                    break;
                case NEVER:
                default:
                    // do nothing
                    break;
            }
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



