Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
name: Continuous Integration

# runs on
# * pushes and pull requests on the "main" (pull request only for specific paths)
# * manual trigger

on:
push:
branches:
- main
branches: [ "main", "feature/*" ]

pull_request:
branches: [ "main", "feature/*" ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
Expand Down
6 changes: 0 additions & 6 deletions src/DataStax.AstraDB.DataApi/Tables/Table.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1084,12 +1084,6 @@ private List<CommandOptions> GetOptionsTree()
return optionsTree.ToList();
}

private List<CommandOptions> GetOptionsTree()
{
var optionsTree = _commandOptions == null ? _database.OptionsTree : _database.OptionsTree.Concat(new[] { _commandOptions });
return optionsTree.ToList();
}

internal Command CreateCommand(string name)
{
var optionsTree = GetOptionsTree().ToArray();
Expand Down
Loading