Skip to content

Commit

Permalink
initial gdbtable reader
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxxen committed May 9, 2023
1 parent 3154bb9 commit d64cc09
Show file tree
Hide file tree
Showing 5 changed files with 791 additions and 0 deletions.
19 changes: 19 additions & 0 deletions spatial/include/spatial/core/functions/table.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#pragma once
#include "spatial/common.hpp"

namespace spatial {

namespace core {

struct CoreTableFunctions {
public:
static void Register(ClientContext &context) {
RegisterReadGDB(context);
}
private:
static void RegisterReadGDB(ClientContext &context);
};

} // namespace core

} // namespace spatial
1 change: 1 addition & 0 deletions spatial/src/spatial/core/functions/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
add_subdirectory(scalar)
add_subdirectory(cast)
add_subdirectory(table)

set(EXTENSION_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/common.cpp
Expand Down
5 changes: 5 additions & 0 deletions spatial/src/spatial/core/functions/table/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
set(EXTENSION_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/st_read_gdb.cpp
${EXTENSION_SOURCES}
PARENT_SCOPE
)
Loading

0 comments on commit d64cc09

Please sign in to comment.