Skip to content
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

Add more fields to requests and responses #4096

Merged
merged 10 commits into from
Feb 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
wip
  • Loading branch information
rumyantseva committed Feb 19, 2024
commit 4bdda45c6cb08210738b3b9f552135c703113140
5 changes: 2 additions & 3 deletions internal/handler/common/insert.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@ type InsertParams struct {
BypassDocumentValidation bool `ferretdb:"bypassDocumentValidation,ignored"`
Comment string `ferretdb:"comment,ignored"`
LSID any `ferretdb:"lsid,ignored"`

TxnNumber int64 `ferretdb:"txnNumber,ignored"`
ClusterTime any `ferretdb:"$clusterTime,ignored"`
TxnNumber int64 `ferretdb:"txnNumber,ignored"`
ClusterTime any `ferretdb:"$clusterTime,ignored"`
}

// GetInsertParams returns the parameters for an insert command.
Expand Down
Loading