Henning Holgersen

Results 3 comments of Henning Holgersen

Just a comment from office hour today, I see some of this is pretty close to what I am thinking of. My initial idea was a syntax like ``` config:...

From what I can tell, the SDK does type validation by default. An input stream where integer columns contain a string, and corresponding error message: ``` {"type": "SCHEMA", "stream": "badges2",...

Slight update due to deprecation warning, we should not invoke `URL` directly but use `connect` method: ``` connection_url = sqlalchemy.engine.url.URL.create( drivername="mssql+pymssql", username=config["user"], password=config["password"], host=config["host"], port=config["port"], database=config["database"] ) ``` Or, of...