Merge pull request #614 from rjnagal/master

Fix table length for bigquery storage.
This commit is contained in:
Victor Marmol 2015-03-24 18:04:16 -07:00
commit bfaf70b255

View File

@ -73,7 +73,7 @@ const (
// TODO(jnagal): Infer schema through reflection. (See bigquery/client/example)
func (self *bigqueryStorage) GetSchema() *bigquery.TableSchema {
fields := make([]*bigquery.TableFieldSchema, 18)
fields := make([]*bigquery.TableFieldSchema, 19)
i := 0
fields[i] = &bigquery.TableFieldSchema{
Type: typeTimestamp,