resolve regression installation issue with PostgreSQL

This commit is contained in:
sbwalker
2024-01-25 13:39:23 -05:00
parent 7c6424e05c
commit de2c56560e
3 changed files with 12 additions and 2 deletions

View File

@ -87,6 +87,11 @@ namespace Oqtane.Database.PostgreSQL
return _rewriter.RewriteName(name);
}
public override string RewriteName(string name, bool isQuery)
{
return _rewriter.RewriteName(name);
}
public override string RewriteValue(string value, string type)
{
if (type == "bool")