Skip to content

Commit 5297ee6

Browse files
committed
minor #249 [Examples] Fix MariaDB parallel execution (valtzu)
This PR was merged into the main branch. Discussion ---------- [Examples] Fix MariaDB parallel execution | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Docs? | no | Issues | Fix #242 | License | MIT Commits ------- e5df957 [Examples] Fix MariaDB parallel execution
2 parents 2367e5d + e5df957 commit 5297ee6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/memory/mariadb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// initialize the store
3232
$store = Store::fromDbal(
3333
connection: DriverManager::getConnection((new DsnParser())->parse($_ENV['MARIADB_URI'])),
34-
tableName: 'my_table',
34+
tableName: 'my_table_memory',
3535
indexName: 'my_index',
3636
vectorFieldName: 'embedding',
3737
);

examples/rag/mariadb-gemini.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
// initialize the store
3535
$store = Store::fromDbal(
3636
connection: DriverManager::getConnection((new DsnParser())->parse(env('MARIADB_URI'))),
37-
tableName: 'my_table',
37+
tableName: 'my_table_gemini',
3838
indexName: 'my_index',
3939
);
4040

examples/rag/mariadb-openai.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
// initialize the store
3434
$store = Store::fromDbal(
3535
connection: DriverManager::getConnection((new DsnParser())->parse(env('MARIADB_URI'))),
36-
tableName: 'my_table',
36+
tableName: 'my_table_openai',
3737
indexName: 'my_index',
3838
);
3939

0 commit comments

Comments
 (0)