Dirk Jonker
Dirk Jonker
Comply to RFC8288 for relation type (section 3.3) https://tools.ietf.org/html/rfc8288#section-3.3 Changes: - Only parse first "rel" parameter - Allow multiple link relation types, i.e. rel="start http://example.net/relation/other"
It would be useful to be able to [create User-Defined Functions (UDF)](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#create_function_statement) from dataform, and being able to reference them like you reference a table. Right now I create UDFs...
Querying a MS SQL Server table that has a SQL_GUID type column will make turbodbc raise a RuntimeError: ``` File "/Users/Dirkjonker/venv/lib/python3.5/site-packages/turbodbc/exceptions.py", line 31, in wrapper return f(*args, **kwds) File "/Users/Dirkjonker/venv/lib/python3.5/site-packages/turbodbc/cursor.py",...
To be able to insert a value in an identity column (like an auto-increment column) you need to explicitly set IDENTITY_INSERT on that specific table to ON. Since turbodbc closes...
Multiple sequential commands using the same cursor object do not seem to work as expected. The below examples work fine with pyodbc. Example 1: local temporary tables (a local temp...
Other Universe services such as Cassandra and Kafka run on the Universal Container Runtime (UCR), Spark is still using the Docker runtime. Are there any plans to support running Spark...
With the latest release curl doesn't work. ``` docker run --rm -it mesosphere/spark:2.0.1-2.2.0-1-hadoop-2.7 /bin/bash root@c91f29a62179:/opt/spark/dist# curl curl: /opt/mesosphere/libmesos-bundle/lib/libcurl.so.4: version `CURL_OPENSSL_3' not found (required by curl) ``` This is because curl...
Preact doesn't really support HTML comments, but it is possible to (mis)use it to generate HTML comments anyway, by creating an element with a name that starts with `!--` and...
### Describe the bug I have a simple set of radio buttons to switch language. I want to have the current option checked by using a simple conditional. ```svelte ```...
In order to support POP3 with STARTTLS, before setting up the secure connection with OpenSSL, the client should send the command `STLS` over the unencrypted TCP connection first.