-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
101059: sql/json: fix null's in array in inverted index support r=yuzefovich a=cucaroach We assumed all the array elements were strings w/o checking for null, now we use AsDString to check it. Found internally with expanded sqlsmith testing. Fixes: #101025 Epic: None Release note: None 101130: changefeedccl: fix pubsub v2 unit tests on AWS r=samiskin a=samiskin Resolves #100968 Resolves #100969 Resolves #100970 Resolves #100971 Resolves #100972 Resolves #100973 Resolves #100974 Resolves #100985 Resolves #100986 Resolves #100987 Resolves #100988 Resolves #101014 Resolves #101015 Resolves #101016 Resolves #101017 Resolves #101018 Resolves #101019 Resolves #101020 Resolves #101030 Resolves #101031 Resolves #101032 Resolves #101033 Resolves #101034 Resolves #101035 Resolves #101036 Resolves #101040 Resolves #101041 Resolves #101042 Resolves #101043 Resolves #101044 Resolves #101045 Resolves #101062 Resolves #101063 Resolves #101064 Resolves #101065 Resolves #101066 Resolves #101067 Resolves #101079 Resolves #101080 Resolves #101081 Resolves #101082 Resolves #101083 Resolves #101084 Resolves #101085 Resolves #101086 Resolves #101099 Resolves #101100 Resolves #101106 Resolves #101107 Resolves #101113 Resolves #101114 Resolves #101115 The pubsub V2 tests would fail with ``` failed to start feed for job 0: pq: opening client: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information ``` only on release-23.1 test runs because every other test was running on google cloud machines, where you didn't need to even have `gcloud` installed for it to work. This happens only on the initial attempt to initialize a PubsubClient when the GRPCConn is not overriden. This PR fixes it by skipping initialization entirely so that we don't have to deal with errors like this or having ensure the old connection is cleaned up before setting the mock one. Release note: None Co-authored-by: Tommy Reilly <[email protected]> Co-authored-by: Shiranka Miskin <[email protected]>
- Loading branch information
Showing
5 changed files
with
35 additions
and
23 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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