-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
samples: add code samples for PostgreSql dialect #836
Conversation
Here is the summary of changes. You are about to add 44 region tags.
This comment is generated by snippet-bot.
|
9c03359
to
83c023d
Compare
d2a9753
to
138ac42
Compare
8826ac2
to
43f3918
Compare
@@ -180,6 +180,7 @@ def blacken(session: nox.sessions.Session) -> None: | |||
# format = isort + black | |||
# | |||
|
|||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:remove extra line
OPERATION_TIMEOUT_SECONDS = 240 | ||
|
||
|
||
# [START spanner_postgresql_create_instance] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A pg instance is not required separately. You can reuse the same instance as google sql instance, and delete this test
database=database_name, | ||
statements=[ | ||
"""CREATE TABLE Singers ( | ||
SingerId bigint NOT NULL, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: can you format this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also can you adda comment that pg is case insensitive or rename it to lower case
No description provided.