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
{{ message }}
This repository was archived by the owner on Sep 17, 2024. It is now read-only.
CockroachDB supports some SQL extensions that are not present in PostgreSQL. Where possible, example apps should be written to use standard SQL, or at least the common subset of CockroachDB and PostgreSQL. For example, this create table statement is incompatible with PostgreSQL because it names the index and includes the INDEX token. Changing it to UNIQUE (userID, timestamp) would allow this example to run on both databases.
CockroachDB supports some SQL extensions that are not present in PostgreSQL. Where possible, example apps should be written to use standard SQL, or at least the common subset of CockroachDB and PostgreSQL. For example, this create table statement is incompatible with PostgreSQL because it names the index and includes the
INDEXtoken. Changing it toUNIQUE (userID, timestamp)would allow this example to run on both databases.