File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1173,10 +1173,14 @@ async def create_branch(
11731173) -> None :
11741174 """Create a new database (branch) based on an existing one."""
11751175
1176- # Dump the edgedbpub schema that holds user data and any extensions.
1176+ # Dump the edgedbpub schema that holds user data and any
1177+ # extensions. Also dump edgedbext, which can unfortunately
1178+ # include some tables/views for the AI extension. (And some
1179+ # extensions, which get created with IF NOT EXISTS, so that is
1180+ # fine.)
11771181 schema_dump = await cluster .dump_database (
11781182 src_dbname ,
1179- include_schemas = ('edgedbpub' ,),
1183+ include_schemas = ('edgedbpub' , 'edgedbext' ),
11801184 include_extensions = ('*' ,),
11811185 schema_only = True ,
11821186 )
You can’t perform that action at this time.
0 commit comments