Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
22 | 2 | 3 | 0.964 | class_member_declarations[3] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 22 | 103 | src/NHibernate/Dialect/InformixDialect.cs |
2 | 13 | 50 | src/NHibernate/Dialect/Oracle8iDialect.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; } } |
| ||||
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; } } |
| |||
/// <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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#70b01700]] | "create temp table" |
1 | 2 | [[#70b01700]] | "create global temporary table" |
2 | 1 | [[#6e70ef60]] | "with no log" |
2 | 2 | [[#6e70ef60]] | "on commit delete rows" |
3 | 1 | [[#70b01640]] | true |
3 | 2 | [[#70b01640]] | false |