You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -202,16 +196,16 @@ To auto-generate unique row IDs, use the [`SERIAL`](serial.html) data type, whic
202
196
203
197
~~~sql
204
198
> CREATE TABLE test (
205
-
id SERIALPRIMARY KEY,
199
+
id SERIALPRIMARY KEY,
206
200
name STRING
207
201
);
208
202
~~~
209
203
210
-
On insert, the `unique_rowid()` function generates a default value from the timestamp and ID of the node executing the insert, a combination that is likely to be globally unique except in extreme cases where a very large number of IDs (100,000+) are generated per node per second. In such cases, you should use a [`BYTES`](bytes.html) column with the `uuid_v4()` function as the default value instead:
204
+
On insert, the `unique_rowid()` function generates a default value from the timestamp and ID of the node executing the insert, a combination that is likely to be globally unique except in extreme cases where a very large number of IDs (100,000+) are generated per node per second. In such cases, you should use a [`BYTES`](bytes.html) column with the `uuid_v4()` function as the default value instead:
211
205
212
206
~~~sql
213
207
> CREATE TABLE test (
214
-
id BYTES PRIMARY KEY DEFAULT uuid_v4(),
208
+
id BYTES PRIMARY KEY DEFAULT uuid_v4(),
215
209
name STRING
216
210
);
217
211
~~~
@@ -271,6 +265,7 @@ To show the definition of a table, use the [`SHOW CREATE TABLE`](show-create-tab
0 commit comments