Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit 8766c9b

Browse files
committed
Fix uninitialized pointer.
Signed-off-by: ienkovich <[email protected]>
1 parent 03363ea commit 8766c9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

omniscidb/Tests/ArrowSQLRunner/ArrowSQLRunner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ class ArrowSQLRunnerImpl {
370370
std::shared_ptr<ArrowStorage> storage_;
371371
std::shared_ptr<hdk::ResultSetRegistry> rs_registry_;
372372
std::shared_ptr<SchemaMgr> schema_mgr_;
373-
CalciteMgr* calcite_;
373+
CalciteMgr* calcite_ = nullptr;
374374
std::shared_ptr<RelAlgCache> rel_alg_cache_;
375375

376376
SQLiteComparator sqlite_comparator_;

0 commit comments

Comments
 (0)