Skip to content

Commit a399c93

Browse files
committed
clean up
1 parent 226f5d4 commit a399c93

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

engine.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,6 @@ func New(a *analyzer.Analyzer, cfg *Config) *Engine {
184184

185185
a.Catalog.RegisterFunction(emptyCtx, function.GetLockingFuncs(ls)...)
186186

187-
//a.Verbose = true
188-
//a.Debug = true
189187
ret := &Engine{
190188
Analyzer: a,
191189
MemoryManager: sql.NewMemoryManager(sql.ProcessMemory),

enginetest/memory_engine_test.go

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -203,12 +203,8 @@ func TestSingleScript(t *testing.T) {
203203
t.Skip()
204204
var scripts = []queries.ScriptTest{
205205
{
206-
Name: "AS OF propagates to nested CALLs",
207-
SetUpScript: []string{
208-
"create table test (id varchar(255), parent varchar(255), primary key(id));",
209-
"create table test2 (id varchar(255), parent varchar(255));",
210-
"create unique index idx_test2_id on test2 (id);",
211-
},
206+
Name: "AS OF propagates to nested CALLs",
207+
SetUpScript: []string{},
212208
Assertions: []queries.ScriptTestAssertion{
213209
{
214210
Query: "create procedure create_proc() create table t (i int primary key, j int);",
@@ -234,8 +230,8 @@ func TestSingleScript(t *testing.T) {
234230
panic(err)
235231
}
236232

237-
engine.EngineAnalyzer().Debug = true
238-
engine.EngineAnalyzer().Verbose = true
233+
//engine.EngineAnalyzer().Debug = true
234+
//engine.EngineAnalyzer().Verbose = true
239235

240236
enginetest.TestScriptWithEngine(t, engine, harness, test)
241237
}

0 commit comments

Comments
 (0)