CloneSet396


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
9310.962statement_list[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19145
src/NHibernate/Dialect/SQLiteDialect.cs
29159
src/NHibernate/Dialect/SQLiteDialect.cs
39172
src/NHibernate/Dialect/SQLiteDialect.cs
Clone Instance
1
Line Count
9
Source Line
145
Source File
src/NHibernate/Dialect/SQLiteDialect.cs

                if (catalog.StartsWith(OpenQuote.ToString()))
                {
                    catalog = catalog.Substring(1, catalog.Length - 1);
                    quoted = true;
                }
                if (catalog.EndsWith(CloseQuote.ToString()))
                                {
                                    catalog = catalog.Substring(0, catalog.Length - 1);
                                    quoted = true;
                                }


Clone Instance
2
Line Count
9
Source Line
159
Source File
src/NHibernate/Dialect/SQLiteDialect.cs

                                if (schema.StartsWith(OpenQuote.ToString()))
                                {
                    schema = schema.Substring(1, schema.Length - 1);
                                    quoted = true;
                                }
                if (schema.EndsWith(CloseQuote.ToString()))
                {
                    schema = schema.Substring(0, schema.Length - 1);
                    quoted = true;
                }


Clone Instance
3
Line Count
9
Source Line
172
Source File
src/NHibernate/Dialect/SQLiteDialect.cs

                        if (table.StartsWith(OpenQuote.ToString()))
                        {
                            table = table.Substring(1, table.Length - 1);
                            quoted = true;
                        }
            if (table.EndsWith(CloseQuote.ToString()))
            {
                table = table.Substring(0, table.Length - 1);
                quoted = true;
            }


Clone AbstractionParameter Count: 1Parameter Bindings

if ( [[#variable70e44060]].StartsWith(OpenQuote.ToString()))
{
    [[#variable70e44060]]= [[#variable70e44060]].Substring(1, [[#variable70e44060]].Length - 1);
   quoted = true;
}
if ( [[#variable70e44060]].EndsWith(CloseQuote.ToString()))
{
    [[#variable70e44060]]= [[#variable70e44060]].Substring(0, [[#variable70e44060]].Length - 1);
   quoted = true;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#70e44060]]
table 
12[[#70e44060]]
schema 
13[[#70e44060]]
catalog