We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26c2c24 commit ce88ce8Copy full SHA for ce88ce8
1 file changed
packages/common/src/db/schema/Schema.ts
@@ -51,10 +51,8 @@ export class Schema<S extends SchemaType = SchemaType> {
51
* developer instead of automatically by PowerSync.
52
* Since raw tables are not backed by JSON, running complex queries on them may be more efficient. Further, they allow
53
* using client-side table and column constraints.
54
- * Note that raw tables are only supported when using the new `SyncClientImplementation.rust` sync client.
55
*
56
* @param tables An object of (table name, raw table definition) entries.
57
- * @experimental Note that the raw tables API is still experimental and may change in the future.
58
*/
59
withRawTables(tables: Record<string, RawTableType>) {
60
for (const [name, rawTableDefinition] of Object.entries(tables)) {
0 commit comments