From 5c72bae8c0495d4a800071d2259e7bb67c2f6a25 Mon Sep 17 00:00:00 2001 From: rahul2393 Date: Wed, 17 Aug 2022 10:58:02 +0530 Subject: [PATCH] chore: add limitations docs (#109) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: add limitations docs * incorporate requested changes * fix docs * chore: Update docs/limitations.rst Co-authored-by: Knut Olav Løite Co-authored-by: ansh0l Co-authored-by: Knut Olav Løite --- docs/limitations.rst | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docs/limitations.rst diff --git a/docs/limitations.rst b/docs/limitations.rst new file mode 100644 index 00000000..4df19f76 --- /dev/null +++ b/docs/limitations.rst @@ -0,0 +1,26 @@ +Limitations +------------------------------------ + +Session Labeling +~~~~~~~~~~~~~~~~ +Cloud Spanner Session Labeling is not supported. + +Request Priority +~~~~~~~~~~~~~~~~ +Request priority can be set by unwrapping the Spanner-specific `SpannerConn` interface and setting the request priority as part of a db call. + +Tagging +~~~~~~~ +Tags can be set by unwrapping the Spanner-specific `SpannerConn` interface and setting the tags using that interface. + +Partition Reads +~~~~~~~ +Partition Reads can be done by unwrapping the Spanner-specific `SpannerConn` interface and doing the parition reads using that interface. + +PostgreSQL +~~~~~~~ +Spanner databases that use the PostgreSQL dialect are not yet supported. + +Backups +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Backups are not supported by this driver. Use the [Cloud Spanner Go client library](https://github.com/googleapis/google-cloud-go/tree/main/spanner) to manage backups programmatically.