|
|
|
@ -2,9 +2,8 @@
|
|
|
|
|
This module implements the handler for duckdb (in memory or not)
|
|
|
|
|
"""
|
|
|
|
|
from transport.sql.common import Base, BaseReader, BaseWriter
|
|
|
|
|
from multiprocessing import RLock
|
|
|
|
|
|
|
|
|
|
class Duck :
|
|
|
|
|
lock = RLock()
|
|
|
|
|
def __init__(self,**_args):
|
|
|
|
|
#
|
|
|
|
|
# duckdb with none as database will operate as an in-memory database
|
|
|
|
@ -19,8 +18,9 @@ class Reader(Duck,BaseReader) :
|
|
|
|
|
def __init__(self,**_args):
|
|
|
|
|
Duck.__init__(self,**_args)
|
|
|
|
|
BaseReader.__init__(self,**_args)
|
|
|
|
|
def _get_uri(self,**_args):
|
|
|
|
|
return super()._get_uri(**_args),{'connect_args':{'read_only':True}}
|
|
|
|
|
class Writer(Duck,BaseWriter):
|
|
|
|
|
def __init__(self,**_args):
|
|
|
|
|
Duck.__init__(self,**_args)
|
|
|
|
|
BaseWriter.__init__(self,**_args)
|
|
|
|
|
|