public class org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction extends org.hibernate.dialect.function.StandardSQLFunction
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction
  super_class: org.hibernate.dialect.function.StandardSQLFunction
{
  public static final org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction INSTANCE;
    descriptor: Lorg/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$CountFunction;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 52
            new org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction
            dup
            invokespecial org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction.<init>:()V
            putstatic org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction.INSTANCE:Lorg/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$CountFunction;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction this
         0: .line 55
            aload 0 /* this */
            ldc "count"
            getstatic org.hibernate.type.StandardBasicTypes.LONG:Lorg/hibernate/type/LongType;
            invokespecial org.hibernate.dialect.function.StandardSQLFunction.<init>:(Ljava/lang/String;Lorg/hibernate/type/Type;)V
         1: .line 56
            return
        end local 0 // org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$CountFunction;

  public java.lang.String render(org.hibernate.type.Type, java.util.List, org.hibernate.engine.spi.SessionFactoryImplementor);
    descriptor: (Lorg/hibernate/type/Type;Ljava/util/List;Lorg/hibernate/engine/spi/SessionFactoryImplementor;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction this
        start local 1 // org.hibernate.type.Type firstArgumentType
        start local 2 // java.util.List arguments
        start local 3 // org.hibernate.engine.spi.SessionFactoryImplementor factory
         0: .line 60
            aload 2 /* arguments */
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmple 3
         1: .line 61
            ldc "distinct"
            aload 2 /* arguments */
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 3
         2: .line 62
            aload 0 /* this */
            aload 2 /* arguments */
            aload 3 /* factory */
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getDialect:()Lorg/hibernate/dialect/Dialect;
            invokevirtual org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction.renderCountDistinct:(Ljava/util/List;Lorg/hibernate/dialect/Dialect;)Ljava/lang/String;
            areturn
         3: .line 65
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* firstArgumentType */
            aload 2 /* arguments */
            aload 3 /* factory */
            invokespecial org.hibernate.dialect.function.StandardSQLFunction.render:(Lorg/hibernate/type/Type;Ljava/util/List;Lorg/hibernate/engine/spi/SessionFactoryImplementor;)Ljava/lang/String;
            areturn
        end local 3 // org.hibernate.engine.spi.SessionFactoryImplementor factory
        end local 2 // java.util.List arguments
        end local 1 // org.hibernate.type.Type firstArgumentType
        end local 0 // org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lorg/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$CountFunction;
            0    4     1  firstArgumentType  Lorg/hibernate/type/Type;
            0    4     2          arguments  Ljava/util/List;
            0    4     3            factory  Lorg/hibernate/engine/spi/SessionFactoryImplementor;
    MethodParameters:
                   Name  Flags
      firstArgumentType  
      arguments          
      factory            

  private java.lang.String renderCountDistinct(java.util.List, org.hibernate.dialect.Dialect);
    descriptor: (Ljava/util/List;Lorg/hibernate/dialect/Dialect;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=3
        start local 0 // org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction this
        start local 1 // java.util.List arguments
        start local 2 // org.hibernate.dialect.Dialect dialect
         0: .line 69
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 3 /* buffer */
        start local 3 // java.lang.StringBuilder buffer
         1: .line 70
            aload 3 /* buffer */
            ldc "count(distinct "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 71
            aload 2 /* dialect */
            invokevirtual org.hibernate.dialect.Dialect.requiresParensForTupleDistinctCounts:()Z
            ifeq 3
            aload 3 /* buffer */
            ldc "("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 72
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            ldc ""
            astore 4 /* sep */
        start local 4 // java.lang.String sep
         4: .line 73
            aload 1 /* arguments */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5 /* itr */
        start local 5 // java.util.Iterator itr
         5: .line 75
            aload 5 /* itr */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            pop
         6: .line 76
            goto 9
         7: .line 77
      StackMap locals: java.lang.String java.util.Iterator
      StackMap stack:
            aload 3 /* buffer */
            aload 4 /* sep */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 5 /* itr */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         8: .line 78
            ldc ", "
            astore 4 /* sep */
         9: .line 76
      StackMap locals:
      StackMap stack:
            aload 5 /* itr */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        10: .line 80
            aload 2 /* dialect */
            invokevirtual org.hibernate.dialect.Dialect.requiresParensForTupleDistinctCounts:()Z
            ifeq 11
            aload 3 /* buffer */
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        11: .line 81
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 5 // java.util.Iterator itr
        end local 4 // java.lang.String sep
        end local 3 // java.lang.StringBuilder buffer
        end local 2 // org.hibernate.dialect.Dialect dialect
        end local 1 // java.util.List arguments
        end local 0 // org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$CountFunction;
            0   12     1  arguments  Ljava/util/List;
            0   12     2    dialect  Lorg/hibernate/dialect/Dialect;
            1   12     3     buffer  Ljava/lang/StringBuilder;
            4   12     4        sep  Ljava/lang/String;
            5   12     5        itr  Ljava/util/Iterator;
    MethodParameters:
           Name  Flags
      arguments  
      dialect    
}
SourceFile: "StandardAnsiSqlAggregationFunctions.java"
NestHost: org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions
InnerClasses:
  public CountFunction = org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions$CountFunction of org.hibernate.dialect.function.StandardAnsiSqlAggregationFunctions