You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we have following queries
SELECT * FROM CBSDS FOR UPDATE;
UPDATE CBSDS;
SELECT * FROM CBSDS;
SELECT * FROM GRANTS;
we want the following:
SELECT * FROM CBSDS JOIN GRANTS; // without for update
UPDATE CBSDS;
Implement the following interface:
type EnodebdManager interface {
FetchCbsd(runner sq.BaseRunner, serial string) (*DetailedCbsd, error)
UpdateCbsd(runner sq.BaseRunner, cbsd *DBCbsd) error
}
The text was updated successfully, but these errors were encountered:
Currently we have following queries
SELECT * FROM CBSDS FOR UPDATE;
UPDATE CBSDS;
SELECT * FROM CBSDS;
SELECT * FROM GRANTS;
we want the following:
SELECT * FROM CBSDS JOIN GRANTS; // without for update
UPDATE CBSDS;
Implement the following interface:
The text was updated successfully, but these errors were encountered: