We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ae5dd7 commit 46fa0f4Copy full SHA for 46fa0f4
store/postgres/src/relational/dsl.rs
@@ -254,7 +254,10 @@ impl<'a> Table<'a> {
254
}
255
256
match column_names {
257
- AttributeNames::All => cols.extend(self.meta.columns.iter()),
+ AttributeNames::All => {
258
+ cols.extend(self.meta.columns.iter());
259
+ cols.push(&*VID_COL);
260
+ }
261
AttributeNames::Select(names) => {
262
let pk = self.meta.primary_key();
263
cols.push(pk);
0 commit comments