From 6c20ef37b9229bcb38d9efd71ea741fcb22e6c6d Mon Sep 17 00:00:00 2001 From: Jon Wayne Parrott Date: Thu, 27 Jul 2017 13:04:53 -0700 Subject: [PATCH] Swap the album titles to be consistent with other samples (#1035) --- spanner/cloud-client/snippets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spanner/cloud-client/snippets.py b/spanner/cloud-client/snippets.py index 4a07ded3ca99..680eda7963e1 100644 --- a/spanner/cloud-client/snippets.py +++ b/spanner/cloud-client/snippets.py @@ -79,8 +79,8 @@ def insert_data(instance_id, database_id): table='Albums', columns=('SingerId', 'AlbumId', 'AlbumTitle',), values=[ - (1, 1, u'Go, Go, Go'), - (1, 2, u'Total Junk'), + (1, 1, u'Total Junk'), + (1, 2, u'Go, Go, Go'), (2, 1, u'Green'), (2, 2, u'Forever Hold Your Peace'), (2, 3, u'Terrified')])