Skip to content

Commit 68b5fe0

Browse files
committed
Fix more merge fall out
1 parent 0b90ac1 commit 68b5fe0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SqlClient/SqlCommandProvider.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ type SqlCommandProvider(config : TypeProviderConfig) as this =
5757
ProvidedStaticParameter("TableVarMapping", typeof<string>, "")
5858
],
5959
instantiationFunction = (fun typeName args ->
60-
let value = lazy this.CreateRootType(typeName, unbox args.[0], unbox args.[1], unbox args.[2], unbox args.[3], unbox args.[4], unbox args.[5], unbox args.[6])
60+
let value = lazy this.CreateRootType(typeName, unbox args.[0], unbox args.[1], unbox args.[2], unbox args.[3], unbox args.[4], unbox args.[5], unbox args.[6], unbox args.[7], unbox args.[8])
6161
cache.GetOrAdd(typeName, value)
6262
)
6363
)
@@ -85,7 +85,7 @@ type SqlCommandProvider(config : TypeProviderConfig) as this =
8585
|> defaultArg
8686
<| base.ResolveAssembly args
8787

88-
member internal this.CreateRootType(typeName, sqlStatement, connectionStringOrName: string, resultType, singleRow, configFile, allParametersOptional, dataDirectory) =
88+
member internal this.CreateRootType(typeName, sqlStatement, connectionStringOrName: string, resultType, singleRow, configFile, allParametersOptional, dataDirectory, tempTableDefinitions, tableVarMapping) =
8989

9090
if singleRow && not (resultType = ResultType.Records || resultType = ResultType.Tuples)
9191
then

0 commit comments

Comments
 (0)