Skip to content

Commit

Permalink
Removed unused tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmu committed Dec 6, 2024
1 parent 0ff6fb6 commit 324e4bb
Showing 1 changed file with 2 additions and 42 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,30 +211,18 @@ tests:
result:
columns: ["@@GLOBAL.max_connections"]
rows: [["999"]]
- name: persistence behavior set to load
- name: persistence behavior
repos:
- name: repo1
server:
args: ["--persistence-behavior", "load"]
args: []
connections:
- on: repo1
queries:
- query: "select @@GLOBAL.max_connections"
result:
columns: ["@@GLOBAL.max_connections"]
rows: [["151"]]
- name: persistence behavior set to ignore
repos:
- name: repo1
server:
args: ["--persistence-behavior", "ignore"]
connections:
- on: repo1
queries:
- query: "select @@GLOBAL.max_connections"
result:
columns: ["@@GLOBAL.max_connections"]
rows: [["100"]]
- name: persisted global variable defined on the command line
repos:
- name: repo1
Expand All @@ -247,34 +235,6 @@ tests:
result:
columns: ["@@GLOBAL.max_connections"]
rows: [["555"]]
- name: persist global variable before server startup with persistence behavior with ignore
repos:
- name: repo1
with_files:
- name: ".dolt/config.json"
contents: |
{"sqlserver.global.max_connections":"999"}
server:
args: ["--persistence-behavior", "ignore"]
connections:
- on: repo1
queries:
- query: "select @@GLOBAL.max_connections"
result:
columns: ["@@GLOBAL.max_connections"]
rows: [["100"]]
- name: persisted global variable defined on the command line with persistence ignored
repos:
- name: repo1
server:
args: ["--max-connections", "555", "--persistence-behavior", "ignore"]
connections:
- on: repo1
queries:
- query: "select @@GLOBAL.max_connections"
result:
columns: ["@@GLOBAL.max_connections"]
rows: [["555"]]
- name: "@@global.dolt_log_level behavior"
repos:
- name: repo1
Expand Down

0 comments on commit 324e4bb

Please sign in to comment.