@@ -81,21 +81,34 @@ To run the Spanner Samples:
81
81
82
82
Available commands:
83
83
add-column Adds a new column to the Albums table in the example database.
84
- create-database Creates a database and tables for sample data.
85
- create-index Adds a simple index to the example database.
86
- create-storing-index Adds an storing index to the example database.
87
- help Displays help for a command
88
- insert-data Inserts sample data into the given database.
89
- list Lists commands
90
- query-data Queries sample data from the database using SQL.
91
- query-data-with-index Queries sample data from the database using SQL and an index.
92
- query-data-with-new-column Queries sample data from the database using SQL.
93
- read-data Reads sample data from the database.
94
- read-data-with-index Reads sample data from the database using an index.
95
- read-data-with-storing-index Reads sample data from the database using an index with a storing clause.
96
- read-only-transaction Reads data inside of a read-only transaction.
97
- read-write-transaction Performs a read-write transaction to update two sample records in the database.
98
- update-data Updates sample data in the database.
84
+ add-column Adds a new column to the Albums table in the example database.
85
+ add-timestamp-column Adds a commit timestamp column to a table.
86
+ batch-query-data Batch queries sample data from the database using SQL.
87
+ create-database Creates a database and tables for sample data.
88
+ create-index Adds a simple index to the example database.
89
+ create-storing-index Adds an storing index to the example database.
90
+ create-table-timestamp Creates a table with a commit timestamp column.
91
+ help Displays help for a command
92
+ insert-data Inserts sample data into the given database.
93
+ insert-data-timestamp Inserts data into a table with a commit timestamp column.
94
+ insert-struct-data Inserts sample data that can be used to test STRUCT parameters in queries.
95
+ list Lists commands
96
+ query-data Queries sample data from the database using SQL.
97
+ query-data-timestamp Queries sample data from a database with a commit timestamp column.
98
+ query-data-with-array-of-struct Queries sample data from the database with an array of struct.
99
+ query-data-with-index Queries sample data from the database using SQL and an index.
100
+ query-data-with-nested-struct-field Queries sample data from the database with a nested struct field value.
101
+ query-data-with-new-column Queries sample data from the database using SQL.
102
+ query-data-with-struct Queries sample data from the database with a struct.
103
+ query-data-with-struct-field Queries sample data from the database with a struct field value.
104
+ read-data Reads sample data from the database.
105
+ read-data-with-index Reads sample data from the database using an index.
106
+ read-data-with-storing-index Reads sample data from the database using an index with a storing clause.
107
+ read-only-transaction Reads data inside of a read-only transaction.
108
+ read-stale-data Reads sample data from the database, with a maximum staleness of 3 seconds.
109
+ read-write-transaction Performs a read-write transaction to update two sample records in the database.
110
+ update-data Updates sample data in the database.
111
+ update-data-timestamp Updates sample data in a table with a commit timestamp column.
99
112
100
113
101
114
## Troubleshooting
0 commit comments