argasi / google-bigquery

Automatically exported from code.google.com/p/google-bigquery
0 stars 0 forks source link

row naming issue #227

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I have "Can not set java.util.List field 
com.google.api.services.bigquery.model.TableRow.f to java.lang.String"
when naming row as "f".

What steps will reproduce the problem?

TableRow row = new TableRow();
row.set("f", 7.7);
TableDataInsertAllRequest.Rows rows = new TableDataInsertAllRequest.Rows();
rows.setInsertId(timestamp);
rows.setJson(row);
List  rowList = new ArrayList();
rowList.add(rows);
TableDataInsertAllRequest content =  new 
TableDataInsertAllRequest().setRows(rowList);
TableDataInsertAllResponse response = bigquery.tabledata().insertAll(
        projectId, datasetId, tableId, content).execute();

What is the expected output? What do you see instead?

Renaming column to smth. like f1 works OK. 

What version of the product are you using? On what operating system?
OSX 10.9, IntelliJ Idea 14.0.2

Please provide any additional information below.

gradle dependencies 
dependencies {
    compile project(':shared')
    compile 'com.google.api-client:google-api-client:1.19.0'
    compile 'com.google.http-client:google-http-client:1.19.0'
    compile 'com.google.http-client:google-http-client-jackson2:1.19.0'
    compile 'com.google.oauth-client:google-oauth-client:1.19.0'
    compile 'com.google.oauth-client:google-oauth-client-servlet:1.19.0'
    compile 'com.google.apis:google-api-services-bigquery:v2-rev171-1.19.0'
    compile 'redis.clients:jedis:2.4.2'
    compile 'com.fasterxml.jackson.core:jackson-core:2.4.4'
    compile 'com.fasterxml.jackson.core:jackson-databind:2.4.4'
    compile 'log4j:log4j:1.2.16'
    compile 'org.json:json:20090211'
    compile 'com.google.api-client:google-api-client:1.17.0-rc'
    compile 'com.google.guava:guava:15.0'
    compile 'org.glassfish.jersey.core:jersey-server:2.10.1'
    compile 'org.glassfish.jersey.core:jersey-client:2.10.1'
    compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.10.1'
    compile 'org.glassfish.jersey.containers:jersey-container-jetty-servlet:2.10.1'
    compile 'org.glassfish.jersey.media:jersey-media-json-jackson:2.10.1'
    compile 'javax.servlet:javax.servlet-api:3.1.0'
    compile 'com.jayway.jsonpath:json-path-assert:0.9.1'
    compile 'com.googlecode.json-simple:json-simple:1.1.1'
    compile 'redis.clients:jedis:2.4.2'
    compile 'com.github.fge:json-schema-validator:2.2.5'
    compile 'org.eclipse.jetty:jetty-server:9.2.1.v20140609'
    compile 'org.mongodb:mongo-java-driver:2.12.0'
    compile 'com.google.code.gson:gson:2.2.4'
    compile 'org.apache.commons:commons-email:1.3.3'
    testCompile 'org.mockito:mockito-all:1.9.5'

}

Original issue reported on code.google.com by va...@fifty-five.com on 6 Mar 2015 at 2:02