diff --git a/src/hellocomputer/db/__init__.py b/src/hellocomputer/db/__init__.py index 2d03641..0af481d 100644 --- a/src/hellocomputer/db/__init__.py +++ b/src/hellocomputer/db/__init__.py @@ -57,6 +57,10 @@ class DDB: raise ValueError( "With local storage you need to provide the path keyword argument" ) + + # Load extensions + self.db.sql("load spatial;") + self.db.sql("load httpfs;") def query(self, sql, *args, **kwargs): return self.db.query(sql, *args, **kwargs)