forked from sqlkata/querybuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for issue sqlkata#592 : Fix places where the parameterPlaceholder…
… is hardcoded to a ? Added compiler to the constructor of SqlResult Made ParameterPlaceholder public
- Loading branch information
1 parent
c202922
commit 8c39678
Showing
19 changed files
with
170 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
using SqlKata.Compilers; | ||
using SqlKata.Tests.Infrastructure; | ||
using System; | ||
using Xunit; | ||
|
||
namespace SqlKata.Tests.PostgreSql | ||
{ | ||
public class PostgresJsonTests : TestSupport | ||
{ | ||
public class JsonAwarePostgresCompiler : PostgresCompiler | ||
{ | ||
public override string ParameterPlaceholder { get; protected set; } = "$$"; | ||
} | ||
|
||
private readonly JsonAwarePostgresCompiler compiler = new(); | ||
private PostgresCompiler regularCompiler; | ||
|
||
public PostgresJsonTests() | ||
{ | ||
regularCompiler = Compilers.Get<PostgresCompiler>(EngineCodes.PostgreSql); | ||
} | ||
|
||
[Fact] | ||
public void LimitWithCustomPlaceHolder() | ||
{ | ||
var query = new Query("Table").Limit(10); | ||
var ctx = new SqlResult(compiler) { Query = query }; | ||
|
||
Assert.Equal($"LIMIT $$", compiler.CompileLimit(ctx)); | ||
Assert.Equal(10, ctx.Bindings[0]); | ||
} | ||
|
||
[Fact] | ||
public void RegularCompilerThrowsExceptionWhereRawJsonContainsQuestionMarkData() | ||
{ | ||
Assert.Throws<IndexOutOfRangeException>(() => | ||
{ | ||
Query query = CreateQuestionMarkJsonQuery(out var rawCondition); | ||
SqlResult result = regularCompiler.Compile(query); | ||
Assert.Equal($"SELECT * FROM \"Table\" WHERE {rawCondition}", result.ToString()); | ||
}); | ||
} | ||
|
||
private Query CreateQuestionMarkJsonQuery(out string rawCondition) | ||
{ | ||
rawCondition = "my_json_column @> '{\"json_param\" : \"question mark ? \"}'"; | ||
var escapedJsonCondition = rawCondition.Replace("{", "\\{").Replace("}", "\\}"); | ||
return new Query("Table").WhereRaw(escapedJsonCondition); | ||
} | ||
|
||
[Fact] | ||
public void WhereRawJsonWithQuestionMarkData() | ||
{ | ||
Query query = CreateQuestionMarkJsonQuery(out var rawCondition); | ||
SqlResult result = compiler.Compile(query); | ||
Assert.Equal($"SELECT * FROM \"Table\" WHERE {rawCondition}", result.ToString()); | ||
} | ||
|
||
[Fact] | ||
public void UsingJsonArray() | ||
{ | ||
var query = new Query("Table").WhereRaw("[Json]->'address'->>'country' in ($$)", new[] { 1, 2, 3, 4 }); | ||
|
||
SqlResult result = compiler.Compile(query); | ||
|
||
Assert.Equal("SELECT * FROM \"Table\" WHERE \"Json\"->'address'->>'country' in (1,2,3,4)", result.ToString()); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.