Skip to content

Commit 0b98954

Browse files
alixhamibshaffer
authored andcommitted
BigQuery: Update snippets folder name and remove SELECT * tests (GoogleCloudPlatform#713)
1 parent fe390ea commit 0b98954

30 files changed

+33
-37
lines changed

bigquery/api/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ All code in the `snippets` directory demonstrate how to invoke Google BigQuery f
2020
4. **Install dependencies** via [Composer](http://getcomposer.org/doc/00-intro.md).
2121
Run `php composer.phar install` (if composer is installed locally) or `composer install`
2222
(if composer is installed globally).
23-
5. Run `php snippets/SNIPPET_NAME.php`. The usage will print for each if no arguments
23+
5. Run `php src/SNIPPET_NAME.php`. The usage will print for each if no arguments
2424
are provided:
2525
```sh
26-
$ php snippets/create_dataset.php
27-
Usage: php snippets/create_dataset.php PROJECT_ID DATASET_ID
26+
$ php src/create_dataset.php
27+
Usage: php src/create_dataset.php PROJECT_ID DATASET_ID
2828
29-
$ php snippets/create_dataset.php your-project-id test_dataset_123
29+
$ php src/create_dataset.php your-project-id test_dataset_123
3030
Created dataset test_dataset_123
3131
```
3232

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* Usage:
3232
* ```
3333
* $projectId = 'Your Project ID';
34-
* $bigQuery = require 'snippets/bigquery_client.php';
34+
* $bigQuery = require 'src/bigquery_client.php';
3535
* ```
3636
*/
3737
# [START bigquery_client_default_credentials]

0 commit comments

Comments
 (0)