@@ -84,26 +84,26 @@ prop_NoThunks x =
8484 Public API
8585-------------------------------------------------------------------------------}
8686
87- -- | Also checks 'NoThunks' for the 'Normal.TableHandle 's that are known to be
87+ -- | Also checks 'NoThunks' for the 'Normal.Table 's that are known to be
8888-- open in the 'Common.Session'.
8989instance (NoThunksIOLike m , Typeable m , Typeable (PrimState m ))
9090 => NoThunks (Session' m ) where
9191 showTypeOf (_ :: Proxy (Session' m )) = " Session'"
9292 wNoThunks ctx (Session' s) = wNoThunks ctx s
9393
9494-- | Does not check 'NoThunks' for the 'Common.Session' that this
95- -- 'Normal.TableHandle ' belongs to.
95+ -- 'Normal.Table ' belongs to.
9696instance (NoThunksIOLike m , Typeable m , Typeable (PrimState m ))
9797 => NoThunks (NormalTable m k v blob ) where
9898 showTypeOf (_ :: Proxy (NormalTable m k v blob )) = " NormalTable"
99- wNoThunks ctx (NormalTable th ) = wNoThunks ctx th
99+ wNoThunks ctx (NormalTable t ) = wNoThunks ctx t
100100
101101{- ------------------------------------------------------------------------------
102102 Internal
103103-------------------------------------------------------------------------------}
104104
105105deriving stock instance Generic (Internal. Session m h )
106- -- | Also checks 'NoThunks' for the 'Internal.TableHandle 's that are known to be
106+ -- | Also checks 'NoThunks' for the 'Internal.Table 's that are known to be
107107-- open in the 'Internal.Session'.
108108deriving anyclass instance (NoThunksIOLike m , Typeable m , Typeable h , Typeable (PrimState m ))
109109 => NoThunks (Internal. Session m h )
@@ -116,20 +116,20 @@ deriving stock instance Generic (SessionEnv m h)
116116deriving anyclass instance (NoThunksIOLike m , Typeable m , Typeable h , Typeable (PrimState m ))
117117 => NoThunks (SessionEnv m h )
118118
119- deriving stock instance Generic (Internal. TableHandle m h )
119+ deriving stock instance Generic (Internal. Table m h )
120120-- | Does not check 'NoThunks' for the 'Internal.Session' that this
121- -- 'Internal.TableHandle ' belongs to.
121+ -- 'Internal.Table ' belongs to.
122122deriving anyclass instance (NoThunksIOLike m , Typeable m , Typeable h , Typeable (PrimState m ))
123- => NoThunks (Internal. TableHandle m h )
123+ => NoThunks (Internal. Table m h )
124124
125- deriving stock instance Generic (TableHandleState m h )
125+ deriving stock instance Generic (TableState m h )
126126deriving anyclass instance (NoThunksIOLike m , Typeable m , Typeable h , Typeable (PrimState m ))
127- => NoThunks (TableHandleState m h )
127+ => NoThunks (TableState m h )
128128
129- deriving stock instance Generic (TableHandleEnv m h )
130- deriving via AllowThunksIn [" tableSession" , " tableSessionEnv" ] (TableHandleEnv m h)
129+ deriving stock instance Generic (TableEnv m h )
130+ deriving via AllowThunksIn [" tableSession" , " tableSessionEnv" ] (TableEnv m h)
131131 instance (NoThunksIOLike m , Typeable m , Typeable h , Typeable (PrimState m ))
132- => NoThunks (TableHandleEnv m h )
132+ => NoThunks (TableEnv m h )
133133
134134-- | Does not check 'NoThunks' for the 'Internal.Session' that this
135135-- 'Internal.Cursor' belongs to.
0 commit comments