google-cloud-bigquery
Advanced tools
Comparing version 0.2.2 to 0.2.3
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="0.2.3"></a> | ||
## [0.2.3](https://github.com/nicolasdao/google-cloud-bigquery/compare/v0.2.2...v0.2.3) (2018-11-22) | ||
### Bug Fixes | ||
* Unit test issue due to bad UTC date formatting ([7a3494a](https://github.com/nicolasdao/google-cloud-bigquery/commit/7a3494a)) | ||
<a name="0.2.2"></a> | ||
@@ -7,0 +17,0 @@ ## [0.2.2](https://github.com/nicolasdao/google-cloud-bigquery/compare/v0.2.1...v0.2.2) (2018-11-14) |
{ | ||
"name": "google-cloud-bigquery", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "Node.js package to create BigQuery table from Google Cloud Storage or load data into Google Cloud BigQuery tables including automatically updating the tables' schema.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -42,3 +42,3 @@ # Google Cloud BigQuery · [![NPM](https://img.shields.io/npm/v/google-cloud-bigquery.svg?style=flat)](https://www.npmjs.com/package/google-cloud-bigquery) [![Tests](https://travis-ci.org/nicolasdao/google-cloud-bigquery.svg?branch=master)](https://travis-ci.org/nicolasdao/google-cloud-bigquery) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) [![Neap](https://neap.co/img/made_by_neap.svg)](#this-is-what-we-re-up-to) | ||
const bigQuery = client.new({ jsonKeyFile: join(__dirname, './serviceaccount.json') }) | ||
const bigQuery = client.new({ jsonKeyFile: join(__dirname, './service-account.json') }) | ||
@@ -45,0 +45,0 @@ const YOUR_DB = 'your-dataset-id' |
@@ -115,3 +115,3 @@ /** | ||
age: 30.9, | ||
dob: new Date(1988,6,24), | ||
dob: new Date(585669600000), | ||
married: 'true' | ||
@@ -157,7 +157,7 @@ }, { | ||
age: 30, | ||
dob: new Date(1988,6,24).getTime(), | ||
dob: new Date(585669600000).getTime(), | ||
married: 'true' | ||
}, | ||
tags:['banana', 123, ''], | ||
note: new Date(1988,6,24), | ||
note: new Date(585669600000), | ||
size: 1.1, | ||
@@ -254,3 +254,3 @@ score: { hello: 'world' } | ||
age: 30, | ||
dob: new Date(1988,6,24), | ||
dob: new Date(585669600000), | ||
married: 'true' | ||
@@ -299,7 +299,7 @@ }, { | ||
age: 30, | ||
dob: new Date(1988,6,24), | ||
dob: new Date(585669600000), | ||
married: 'true' | ||
}, | ||
tags:['banana', 123, ''], | ||
note: new Date(1988,6,24), | ||
note: new Date(585669600000), | ||
size: 1.1, | ||
@@ -306,0 +306,0 @@ score: { hello: 'world' } |
@@ -23,3 +23,3 @@ /** | ||
firstname: 'Nicolas', | ||
age: new Date(2018,10,14), | ||
age: new Date(1542114000000), | ||
country: ['hello'], | ||
@@ -42,3 +42,3 @@ inserted_date: true | ||
}], | ||
inserted_date: new Date(2018,10,14) | ||
inserted_date: new Date(1542114000000) | ||
}], | ||
@@ -45,0 +45,0 @@ forcedSchema: { |
80597