8000 Swap the album titles to be consistent with other samples (#1035) · johnmanong/python-docs-samples@6c20ef3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6c20ef3

Browse files
author
Jon Wayne Parrott
authored
Swap the album titles to be consistent with other samples (GoogleCloudPlatform#1035)
1 parent a3d9c37 commit 6c20ef3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spanner/cloud-client/snippets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ def insert_data(instance_id, database_id):
7979
table='Albums',
8080
columns=('SingerId', 'AlbumId', 'AlbumTitle',),
8181
values=[
82-
(1, 1, u'Go, Go, Go'),
83-
(1, 2, u'Total Junk'),
82+
(1, 1, u'Total Junk'),
83+
(1, 2, u'Go, Go, Go'),
8484
(2, 1, u'Green'),
8585
(2, 2, u'Forever Hold Your Peace'),
8686
(2, 3, u'Terrified')])

0 commit comments

Comments
 (0)
0