Closed brendin-nye closed 2 years ago
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).
View this failed invocation of the CLA check for more information.
For the most up to date status, view the checks section at the bottom of the pull request.
Woops, something went wrong with signing CLA, I'll get that fixed.
cc @wkozlik @nyc ❤️
Context
Filtering was implemented in pull request #11. In its current state, there is a small import error in filtering.go. Filtering implementation appears to assume JSON(B) for the
data
columns innotes
andoccurrences
tables.Description
This PR brings the filtering implementation into a working state by changing the import of
expr
to the one implemented in grafeas repo.data
columns are changed to JSONB and database operation code in pgsqlstore.go is updated accordingly. Some dependency updates and fix some deprecation warnings withptypes timestamp.Now()
.