I ran the following code below in Python:
configuration_str= """
configuration={
"query": {
"query": "CALL `{0}.{1}.{2}`(); ",
"useLegacySql": False,
}
},
""".format("server_name", "dataset_name", "sp_name")
I got the error below:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
KeyError: '\n "query"'
What is the issue and how to fix it?