Skip to content

Commit e62e99d

Browse files
Copilotdroyad
andauthored
Fix CS1591: Add XML documentation to GetDummyQuery method (#15)
* Initial plan * Add XML documentation comment to GetDummyQuery method to fix CS1591 Co-authored-by: droyad <1687639+droyad@users.noreply.github.com> * Updated approval file --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: droyad <1687639+droyad@users.noreply.github.com> Co-authored-by: Robert Wagner <robert@wagner.id.au>
1 parent df14a9d commit e62e99d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/Tests/ApprovalFiles/NoPublicApiChanges.Run.approved.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public class OracleConnectionManager : DbUp.Engine.Transactions.DatabaseConnecti
2525
"ate command splitter instance.")]
2626
public OracleConnectionManager(string connectionString) { }
2727
public OracleConnectionManager(string connectionString, DbUp.Oracle.OracleCommandSplitter commandSplitter) { }
28+
protected override string GetDummyQuery() { }
2829
public override System.Collections.Generic.IEnumerable<string> SplitScriptIntoCommands(string scriptContents) { }
2930
}
3031
public class OracleCustomDelimiterCommandReader : DbUp.Support.SqlCommandReader

src/dbup-oracle/OracleConnectionManager.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ public class OracleConnectionManager : DatabaseConnectionManager
1212
{
1313
private readonly OracleCommandSplitter commandSplitter;
1414

15+
/// <summary>
16+
/// Gets a dummy query used to test the connection.
17+
/// </summary>
1518
protected override string GetDummyQuery() => "select 1 from dual";
1619

1720
/// <summary>

0 commit comments

Comments
 (0)