CloneSet2259


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
22230.964class_member_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
122103
src/NHibernate/Dialect/InformixDialect.cs
21350
src/NHibernate/Dialect/Oracle8iDialect.cs
Clone Instance
1
Line Count
22
Source Line
103
Source File
src/NHibernate/Dialect/InformixDialect.cs

                /// <summary> Command used to create a temporary table. </summary>
                public override string CreateTemporaryTableString
                {
                        get { return "create temp table";
                            }
                }

                /// <summary> 
                /// Get any fragments needing to be postfixed to the command for
                /// temporary table creation. 
                /// </summary>
                public override string CreateTemporaryTablePostfix
                {
                        get { return "with no log";
                            }
                }

                /// <summary> 
                /// Should the value returned by <see cref="CurrentTimestampSelectString"/>
                /// be treated as callable.  Typically this indicates that JDBC escape
                /// sytnax is being used...
                /// </summary>
                public override bool IsCurrentTimestampSelectStringCallable
                {
                        get { return true;
                            }
                }



Clone Instance
2
Line Count
13
Source Line
50
Source File
src/NHibernate/Dialect/Oracle8iDialect.cs

                public override string CreateTemporaryTableString
                {
                        get { return "create global temporary table";
                            }
                }

                public override string CreateTemporaryTablePostfix
                {
                        get { return "on commit delete rows";
                            }
                }

                public override bool IsCurrentTimestampSelectStringCallable
                {
                        get { return false;
                            }
                }



Clone AbstractionParameter Count: 3Parameter Bindings

/// <summary> Command used to create a temporary table. </summary>
public override string CreateTemporaryTableString
{
   get
   {
      return [[#variable70b01700]];
   }
}

/// <summary> 
/// Get any fragments needing to be postfixed to the command for
/// temporary table creation. 
/// </summary>
public override string CreateTemporaryTablePostfix
{
   get
   {
      return [[#variable6e70ef60]];
   }
}

/// <summary> 
/// Should the value returned by <see cref="CurrentTimestampSelectString"/>
/// be treated as callable.  Typically this indicates that JDBC escape
/// sytnax is being used...
/// </summary>
public override bool IsCurrentTimestampSelectStringCallable
{
   get
   {
      return [[#variable70b01640]];
   }
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#70b01700]]
"create temp table" 
12[[#70b01700]]
"create global temporary table" 
21[[#6e70ef60]]
"with no log" 
22[[#6e70ef60]]
"on commit delete rows" 
31[[#70b01640]]
true 
32[[#70b01640]]
false