Tobias Pütz
Tobias Pütz
The init signature has been added to `help(type)` on some version >3.6.5 which I am on: https://github.com/python/cpython/commit/ccb5f3cee9ebb5f20e33f31432a46579f8e9bf8e#diff-cbbbf1954ca2586f5d1d6241674fab9a It still would be nice to be able to set the doc strings...
```sh $ docker pull rocm/pytorch:rocm3.7_ubuntu18.04_py3.6_pytorch $ alias drun='sudo docker run -it --network=host --device=/dev/kfd --device=/dev/dri --group-add video --cap-add=SYS_PTRACE --security-opt seccomp=unconfined -v $HOME:/data' $ drun rocm/pytorch:rocm3.7_ubuntu18.04_py3.6_pytorch $ python ``` ```py >>> import...
Hi @nastra, this script: ```python3 import pyspark from pyspark.conf import SparkConf from pyspark.sql import SparkSession import pandas as pd CATALOG_URL = "http://server:8080/catalog" MANAGEMENT_URL = "http://server:8080/management" DEMO_WAREHOUSE = "demo" config =...
Setting the namespace via: ```python3 spark.sql("USE spark_demo") spark.sql("CREATE view vv3 as select * from spark_demo.mytable") ``` ends up setting `default-namespace`: ```json { "name": "vv3", "schema": { "schema-id": 0, "type": "struct",...
Thanks for checking this @nastra, I understand that we should be relaxing the constraints of NamespaceIdent then since an empty default-namespace is expected.