Skip to content

Commit 9171ef1

Browse files
fix compile
1 parent 9f9c378 commit 9171ef1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/datastore/src/locking_tx_datastore/state_view.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use core::ops::RangeBounds;
1313
use spacetimedb_lib::ConnectionId;
1414
use spacetimedb_primitives::{ColList, TableId};
1515
use spacetimedb_sats::AlgebraicValue;
16-
use spacetimedb_schema::schema::{ColumnSchema, TableSchema, ViewInfo};
16+
use spacetimedb_schema::schema::{ColumnSchema, TableSchema, ViewDefInfo};
1717
use spacetimedb_table::{
1818
blob_store::HashMapBlobStore,
1919
table::{IndexScanRangeIter, RowRef, Table, TableScanIter},
@@ -122,7 +122,7 @@ pub trait StateView {
122122
.transpose()?;
123123

124124
// Look up the view info for the table in question, if any.
125-
let view_info: Option<ViewInfo> = self
125+
let view_info: Option<ViewDefInfo> = self
126126
.iter_by_col_eq(
127127
ST_VIEW_ID,
128128
StViewFields::TableId,
@@ -136,7 +136,7 @@ pub trait StateView {
136136
.next()
137137
.is_some();
138138

139-
Ok(ViewInfo {
139+
Ok(ViewDefInfo {
140140
view_id: row.view_id,
141141
has_args,
142142
is_anonymous: row.is_anonymous,

0 commit comments

Comments
 (0)