@@ -129,9 +129,16 @@ To run this sample:
129
129
particular timestamp.
130
130
add_index Adds a simple index to the example database.
131
131
query_data_with_index
132
- Inserts sample data into the given database. The
133
- database and table must already exist and can be
134
- created using ` create_database` .
132
+ Queries sample data from the database using SQL and an
133
+ index. The index must exist before running this
134
+ sample. You can add the index by running the
135
+ ` add_index` sample or by running this DDL statement
136
+ against your database: CREATE INDEX AlbumsByAlbumTitle
137
+ ON Albums(AlbumTitle) This sample also uses the
138
+ ` MarketingBudget` column. You can add the column by
139
+ running the ` add_column` sample or by running this DDL
140
+ statement against your database: ALTER TABLE Albums
141
+ ADD COLUMN MarketingBudget INT64
135
142
read_data_with_index
136
143
Inserts sample data into the given database. The
137
144
database and table must already exist and can be
@@ -157,11 +164,11 @@ This sample uses the `Google Cloud Client Library for Python`_.
157
164
You can read the documentation for more details on API usage and use GitHub
158
165
to `browse the source `_ and `report issues `_.
159
166
160
- .. Google Cloud Client Library for Python:
167
+ .. _ Google Cloud Client Library for Python :
161
168
https://googlecloudplatform.github.io/google-cloud-python/
162
- .. browse the source:
169
+ .. _ browse the source :
163
170
https://github.com/GoogleCloudPlatform/google-cloud-python
164
- .. report issues:
171
+ .. _ report issues :
165
172
https://github.com/GoogleCloudPlatform/google-cloud-python/issues
166
173
167
174
0 commit comments