我正在尝试向BigQuery现有表添加新列.我尝试过bq命令工具和API方法.调用Tables.update()时出现以下错误.
我试过提供带有附加字段的完整模式,并且也给出了如下所示的相同错误.
使用API我得到以下错误:
{
"schema": {
"fields": [{
"name": "added_column",
"type": "integer",
"mode": "nullable"
}]
}
}
{
"error": {
"errors": [{
"domain": "global",
"reason": "invalid",
"message": "Provided Schema does not match Table [blah]"
}],
"code": 400,
"message": "Provided Schema does not match Table [blah]"
}
}
Run Code Online (Sandbox Code Playgroud)
使用BQ工具,我收到以下错误:
./bq update -t blah added_column:integer
Run Code Online (Sandbox Code Playgroud)
更新操作中的BigQuery错误:提供的架构与表[blah]不匹配
我的应用程序适用于Cordova iOS 3.6.3.但是对于iOS 3.7.0,我收到错误,应用程序无法启动.这是我在模拟器中的日志中看到的唯一信息:
2014-11-23 23:55:21.149 App[68461:5278465] -[__NSCFString JSONObject]: unrecognized selector sent to instance 0x122db42b0
2014-11-23 23:55:21.151 App 68461:5278465] *** WebKit discarded an uncaught exception in the webView:decidePolicyForNavigationAction:request:frame:decisionListener: delegate: <NSInvalidArgumentException> -[__NSCFString JSONObject]: unrecognized selector sent to instance 0x122db42b0
2014-11-23 23:55:21.176 App[68461:5278465] -[__NSCFString JSONObject]: unrecognized selector sent to instance 0x122db4278
2014-11-23 23:55:21.176 App 68461:5278465] *** WebKit discarded an uncaught exception in the webView:decidePolicyForNavigationAction:request:frame:decisionListener: delegate: <NSInvalidArgumentException> -[__NSCFString JSONObject]: unrecognized selector sent to instance 0x122db4278
Run Code Online (Sandbox Code Playgroud)
谢谢,