This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+----------------------------------------------------------------------+----------------------------------------------------------------------+ | |
| tx1 | tx2 | | |
+----------------------------------------------------------------------+----------------------------------------------------------------------+ | |
| spanner> BEGIN; | | | |
| Query OK, 0 rows affected (0.05 sec) | | | |
| | | | |
| | spanner> BEGIN; | | |
| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+---------------------------------------------------+---------------------------------------------------------------+ | |
| tx1 | tx2 | | |
+---------------------------------------------------+---------------------------------------------------------------+ | |
| spanner> BEGIN RO; | | | |
| Query OK, 0 rows affected (0.00 sec) | | | |
| | | | |
| | spanner> BEGIN; | | |
| | Query OK, 0 rows affected (0.26 sec) | | |
| | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+---------------------------------------------------------------------+-------------------------------------------------------------------------------------+ | |
| tx1 | tx2 | | |
+---------------------------------------------------------------------+-------------------------------------------------------------------------------------+ | |
| spanner> BEGIN RO; | | | |
| Query OK, 0 rows affected (0.00 sec) | | | |
| | | | |
| | span |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+---------------------------------------------------------------------+-------------------------------------------------------------------------------------+ | |
| tx1 | tx2 | | |
+---------------------------------------------------------------------+-------------------------------------------------------------------------------------+ | |
| spanner> BEGIN; | | | |
| Query OK, 0 rows affected (0.03 sec) | | | |
| | | | |
| | span |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+---------------------------------------------------+---------------------------------------------------------------+ | |
| tx1 | tx2 | | |
+---------------------------------------------------+---------------------------------------------------------------+ | |
| spanner> BEGIN RO; | | | |
| Query OK, 0 rows affected (0.00 sec) | | | |
| | | | |
| | spanner> BEGIN; | | |
| | Query OK, 0 rows affected (0.02 sec) | | |
| | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+---------------------------------------------------+---------------------------------------------------------------+ | |
| tx1 | tx2 | | |
+---------------------------------------------------+---------------------------------------------------------------+ | |
| spanner> BEGIN; | | | |
| Query OK, 0 rows affected (0.02 sec) | | | |
| | | | |
| | spanner> BEGIN; | | |
| | Query OK, 0 rows affected (0.91 sec) | | |
| | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+------------------------------------------------------+------------------------------------------------------+ | |
| tx1 | tx2 | | |
+------------------------------------------------------+------------------------------------------------------+ | |
| spanner> BEGIN; | | | |
| Query OK, 0 rows affected (0.01 sec) | | | |
| | | | |
| | spanner> BEGIN; | | |
| | Query OK, 0 rows affected (0.05 sec) | | |
| | | | |
| spanner> SELEC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+---------------------------------------------------------------+---------------------------------------------------+ | |
| tx1 | tx2 | | |
+---------------------------------------------------------------+---------------------------------------------------+ | |
| spanner> BEGIN; | | | |
| Query OK, 0 rows affected (1.17 sec) | | | |
| | | | |
| | spanner> BEGIN; | | |
| | Query OK, 0 rows affected (0.06 sec) | | |
| | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"os" | |
"strings" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"golang.org/x/oauth2/google" |