CloneSet2613


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
14210.986class_member_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19195
src/NHibernate/Dialect/InformixDialect.cs
214148
src/NHibernate/Dialect/PostgreSQLDialect.cs
Clone Instance
1
Line Count
9
Source Line
195
Source File
src/NHibernate/Dialect/InformixDialect.cs

                /// <summary> 
                /// Get the <tt>FOR UPDATE OF column_list</tt> fragment appropriate for this
                /// dialect given the aliases of the columns to be write locked.
                ///  </summary>
                /// <param name="aliases">The columns to be write locked. </param>
                /// <returns> The appropriate <tt>FOR UPDATE OF column_list</tt> clause string. </returns>
                public override string GetForUpdateString(string aliases)
                {
                        return ForUpdateString + " of " + aliases;
                }

                /// <summary> Does this dialect support temporary tables? </summary>
                public override bool SupportsTemporaryTables
                {
                        get { return true;
                            }
                }



Clone Instance
2
Line Count
14
Source Line
148
Source File
src/NHibernate/Dialect/PostgreSQLDialect.cs

                public override string GetForUpdateString(string aliases)
                {
                        return ForUpdateString + " of " + aliases;
                }

                /// <summary>PostgreSQL supports UNION ALL clause</summary>
                /// <remarks>
                /// Reference: <see href="http://www.postgresql.org/docs/8.0/static/sql-select.html#SQL-UNION">
                /// PostgreSQL 8.0 UNION Clause documentation</see>
                /// </remarks>
                /// <value><see langword="true"/></value>
                public override bool SupportsUnionAll
                {
                        get { return true;
                            }
                }



Clone AbstractionParameter Count: 1Parameter Bindings

/// <summary> 
/// Get the <tt>FOR UPDATE OF column_list</tt> fragment appropriate for this
/// dialect given the aliases of the columns to be write locked.
///  </summary>
/// <param name="aliases">The columns to be write locked. </param>
/// <returns> The appropriate <tt>FOR UPDATE OF column_list</tt> clause string. </returns>
public override string GetForUpdateString(string aliases)
{
   return ForUpdateString + " of " + aliases;
}

/// <summary>PostgreSQL supports UNION ALL clause</summary>
/// <remarks>
/// Reference: <see href="http://www.postgresql.org/docs/8.0/static/sql-select.html#SQL-UNION">
/// PostgreSQL 8.0 UNION Clause documentation</see>
/// </remarks>
/// <value><see langword="true"/></value>
/// <summary> Does this dialect support temporary tables? </summary>
public override bool [[#variable57d162a0]]
{
   get
   {
      return true;
   }
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#57d162a0]]
SupportsUnionAll 
12[[#57d162a0]]
SupportsTemporaryTables