You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Refactor ADK store SQL table creation methods to be asynchronous (#144)
* fix: Refactor ADK store SQL table creation methods to be asynchronous
This is done mainly to address issues with Oracle's JSON detection and in-memory flag on creation.
- Changed `_get_create_sessions_table_sql` and `_get_create_events_table_sql` methods in various ADK store classes to be asynchronous.
- Updated `create_tables` methods to use `execute_script` for executing SQL statements asynchronously.
- Modified the Oracle ADK store to support INMEMORY PRIORITY HIGH clause for table creation.
- Added tests to verify the correct creation of tables with INMEMORY settings for both async and sync stores.
- Updated Litestar configuration to reflect changes in INMEMORY clause handling.
* fix: assertions
* refactor: switch from information_schema to pg_catalog for column and table queries in PostgreSQL adapters (#146)
0 commit comments