Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
14 | 2 | 1 | 0.986 | class_member_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 9 | 195 | src/NHibernate/Dialect/InformixDialect.cs |
2 | 14 | 148 | src/NHibernate/Dialect/PostgreSQLDialect.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; } } |
| ||||
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; } } |
| |||
/// <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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#57d162a0]] | SupportsUnionAll |
1 | 2 | [[#57d162a0]] | SupportsTemporaryTables |