|
| 1 | +# Copyright 2024 Google LLC All rights reserved. |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +import datetime |
| 16 | +import uuid |
| 17 | + |
| 18 | +from sqlalchemy import create_engine |
| 19 | +from sqlalchemy.orm import Session |
| 20 | + |
| 21 | +from sample_helper import run_sample |
| 22 | +from model import Singer, Concert, Venue, TicketSale |
| 23 | + |
| 24 | + |
| 25 | +# Shows how to use a bit-reversed sequence for primary key generation. |
| 26 | +# |
| 27 | +# The TicketSale model uses a bit-reversed sequence for automatic primary key |
| 28 | +# generation: |
| 29 | +# |
| 30 | +# id: Mapped[int] = mapped_column( |
| 31 | +# BigInteger, |
| 32 | +# Sequence("ticket_sale_id"), |
| 33 | +# server_default=TextClause("GET_NEXT_SEQUENCE_VALUE(SEQUENCE ticket_sale_id)"), |
| 34 | +# primary_key=True, |
| 35 | +# ) |
| 36 | +# |
| 37 | +# This leads to the following table definition: |
| 38 | +# |
| 39 | +# CREATE TABLE ticket_sales ( |
| 40 | +# id INT64 NOT NULL DEFAULT (GET_NEXT_SEQUENCE_VALUE(SEQUENCE ticket_sale_id)), |
| 41 | +# ... |
| 42 | +# ) PRIMARY KEY (id) |
| 43 | +def bit_reversed_sequence_sample(): |
| 44 | + engine = create_engine( |
| 45 | + "spanner:///projects/sample-project/" |
| 46 | + "instances/sample-instance/" |
| 47 | + "databases/sample-database", |
| 48 | + echo=True, |
| 49 | + ) |
| 50 | + with Session(engine) as session: |
| 51 | + singer = Singer(id=str(uuid.uuid4()), first_name="John", last_name="Doe") |
| 52 | + venue = Venue(code="CH", name="Concert Hall", active=True) |
| 53 | + concert = Concert( |
| 54 | + venue=venue, |
| 55 | + start_time=datetime.datetime(2024, 11, 7, 19, 30, 0), |
| 56 | + singer=singer, |
| 57 | + title="John Doe - Live in Concert Hall", |
| 58 | + ) |
| 59 | + # TicketSale automatically generates a primary key value using a |
| 60 | + # bit-reversed sequence. We therefore do not need to specify a primary |
| 61 | + # key value when we create an instance of TicketSale. |
| 62 | + ticket_sale = TicketSale( |
| 63 | + concert=concert, customer_name="Alice Doe", seats=["A010", "A011", "A012"] |
| 64 | + ) |
| 65 | + session.add_all([singer, venue, concert, ticket_sale]) |
| 66 | + session.commit() |
| 67 | + |
| 68 | + |
| 69 | +if __name__ == "__main__": |
| 70 | + run_sample(bit_reversed_sequence_sample) |
0 commit comments