You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -59,6 +60,8 @@ public override void Visit(PlaceholderNode node)
59
60
60
61
privatevoidVisit(SchemaNodePlaceholderNodenode)
61
62
{
63
+
EnsureActualizationPossible();
64
+
62
65
varschema=node.SchemaNode.Schema;
63
66
64
67
varnames=(node.DbQualified)
@@ -93,6 +96,12 @@ public override void Visit(CycleNode node)
93
96
94
97
#endregion
95
98
99
+
privatevoidEnsureActualizationPossible()
100
+
{
101
+
if(!canActualizeQuery){
102
+
thrownewInvalidOperationException("Query was compiled with SqlCompilerConfiguration.SharedStorageSchema option set to true, it required PostCompilerConfiguration.SchemaMapping and PostCompilerConfiguration.DatabaseMapping collections to be provided.");
103
+
}
104
+
}
96
105
97
106
// Constructors
98
107
@@ -101,6 +110,7 @@ private PostCompiler(SqlPostCompilerConfiguration configuration, int estimatedRe
0 commit comments