fix: allow functions to be default values#252
Merged
olavloite merged 8 commits intogoogleapis:mainfrom Jun 1, 2023
Merged
Conversation
cb59754 to
875fc04
Compare
Contributor
Author
|
On GitHub Actions, the right parenthesis of |
Because newer Spanner emulators have a bug aroud information schema. They cannot return correct values for COLUMN_DEFAULT. spanner> SELECT COLUMN_NAME, COLUMN_DEFAULT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME="dynamic_items"; +---------------+--------------------+ | COLUMN_NAME | COLUMN_DEFAULT | +---------------+--------------------+ | id | NULL | | col_timestamp | CURRENT_TIMESTAMP( | +---------------+--------------------+ 2 rows in set (2.079298ms)
024e00c to
37bbdeb
Compare
Contributor
Author
It was a bug of emulator v1.5.1 and newer. |
Contributor
Author
olavloite
approved these changes
May 31, 2023
Collaborator
|
@nownabe Thanks for this change. LGTM. I've reverted the tests to using the latest version of the emulator, as it appears that the bug that you discovered has been fixed. |
Collaborator
|
The current build error appears to be caused by ActiveRecord 7.0.5, which contains a change in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix #247