interfaceConnectionInterface
interface ConnectionInterface
Minimal connection interface for ZTD layer.
This interface defines the contract that all database adapters must implement to work with the ZTD session. It provides a driver-agnostic API for executing SQL queries.
Methods§
public function query(string $sql): StatementInterface|falseExecute a query and return a statement.
Parameters
$sql | string |
Returns
StatementInterface|false The statement on success, false on failure.Called from 18
- method-call ZtdQuery\Session::execStatement() packages/ztd-query-core/src/Session.php:412
- method-call ZtdQuery\Session::execStatement() packages/ztd-query-core/src/Session.php:423
- method-call ZtdQuery\Platform\MySql\Connection\MySqlSessionSqlModeReflector::reflect() packages/ztd-query-mysql/src/Connection/MySqlSessionSqlModeReflector.php:26
- method-call ZtdQuery\Platform\MySql\Schema\MySqlSchemaReflector::getCreateStatement() packages/ztd-query-mysql/src/Schema/MySqlSchemaReflector.php:35
- method-call ZtdQuery\Platform\MySql\Schema\MySqlSchemaReflector::reflectAll() packages/ztd-query-mysql/src/Schema/MySqlSchemaReflector.php:53
- method-call ZtdQuery\Platform\MySql\Schema\MySqlSchemaReflector::reflectViews() packages/ztd-query-mysql/src/Schema/MySqlSchemaReflector.php:82
- method-call ZtdQuery\Platform\MySql\Schema\MySqlSchemaReflector::reflectViews() packages/ztd-query-mysql/src/Schema/MySqlSchemaReflector.php:93
- method-call ZtdQuery\Platform\Postgres\Schema\Partition\PgSqlPartitionReflector::reflect() packages/ztd-query-postgres/src/Schema/Partition/PgSqlPartitionReflector.php:34
- method-call ZtdQuery\Platform\Postgres\Schema\PgSqlSchemaReflector::reflectAll() packages/ztd-query-postgres/src/Schema/PgSqlSchemaReflector.php:70
- method-call ZtdQuery\Platform\Postgres\Schema\PgSqlSchemaReflector::reflectViews() packages/ztd-query-postgres/src/Schema/PgSqlSchemaReflector.php:110
- method-call ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\PartitionKeys::reflect() packages/ztd-query-postgres/src/Schema/Reflection/Catalog/PartitionKeys.php:33
- method-call ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\TableQueries::columns() packages/ztd-query-postgres/src/Schema/Reflection/Catalog/TableQueries.php:30
- method-call ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\TableQueries::primaryKey() packages/ztd-query-postgres/src/Schema/Reflection/Catalog/TableQueries.php:47
- method-call ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\TableQueries::uniqueIndexes() packages/ztd-query-postgres/src/Schema/Reflection/Catalog/TableQueries.php:66
- method-call ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\TableQueries::foreignKeys() packages/ztd-query-postgres/src/Schema/Reflection/Catalog/TableQueries.php:92
- method-call ZtdQuery\Platform\Sqlite\Schema\SqliteSchemaReflector::getCreateStatement() packages/ztd-query-sqlite/src/Schema/SqliteSchemaReflector.php:46
- method-call ZtdQuery\Platform\Sqlite\Schema\SqliteSchemaReflector::reflectAll() packages/ztd-query-sqlite/src/Schema/SqliteSchemaReflector.php:76
- method-call ZtdQuery\Platform\Sqlite\Schema\SqliteSchemaReflector::reflectViews() packages/ztd-query-sqlite/src/Schema/SqliteSchemaReflector.php:118
Test cases 186§
Test cases that cover or call this symbol, from the coverage report and from the analyzed test sources.
Other tests reaching this symbol 186
FakeConnectioncallsFakeSessionFactorycallsMySqlSessionSqlModeReflectorTest::testReflectsTheCurrentSessionSqlModecallsMySqlSessionSqlModeReflectorTest::testUsesTheDefaultModeWhenReflectionFailscallsPdoConnectionTest::testItIsTheConnectionZtdReadsAndWritesThroughcallsMySqlSessionFactoryTest::testCreateAppliesReflectedAnsiQuotesModeToProductionLexingcallsMySqlSessionFactoryTest::testCreateRegistersReflectedViewscallsMySqlSessionFactoryTest::testCreateReturnsSessioncallsPgSqlSessionFactoryTest::testCreatedSessionIsEnabledByDefaultcallsPgSqlSessionFactoryTest::testCreateRegistersReflectedPartialUniqueIndexescallsPgSqlSessionFactoryTest::testCreateRegistersReflectedPartitionMetadatacallsPgSqlSessionFactoryTest::testCreateRegistersReflectedViewscallsPgSqlSessionFactoryTest::testCreateReturnsSessioncallsPgSqlSessionFactoryTest::testCreateWithEmptyDatabaseReturnsSessioncallsPgSqlSessionFactoryTest::testCreateWithNullParseResultStillWorkscallsPgSqlSessionFactoryTest::testCreateWithTableRegistersSchemaInSessioncallsPgSqlSessionFactoryTest::testCreateWithTablesReflectsSchemacallsPgSqlSessionFactoryTest::testSessionCanBeEnabledAfterCreationcallsMySqlSchemaReflectorTest::testGetCreateStatementReturnsNullWhenNoRowscallsMySqlSchemaReflectorTest::testGetCreateStatementReturnsNullWhenQueryFailscallsMySqlSchemaReflectorTest::testGetCreateStatementReturnsSqlcallsMySqlSchemaReflectorTest::testReflectAllReturnsEmptyWhenQueryFailscallsMySqlSchemaReflectorTest::testReflectViewsReturnsEmptyWhenQueryFailscallsMySqlSchemaReflectorTest::testReflectViewsSkipsMalformedDefinitionscallsPgSqlPartitionReflectorTest::testReflectsKeysAndParentRelationsFromCatalogcallsPgSqlPartitionReflectorTest::testReturnsEmptyMetadataWhenCatalogQueriesFailcallsPgSqlSchemaReflectorTest::testArrayWithLowercaseUdtNamecallsPgSqlSchemaReflectorTest::testCharStringLengthcallsPgSqlSchemaReflectorTest::testCollectsCompositePartialIndexesAndDiscardsMalformedMetadatacallsPgSqlSchemaReflectorTest::testEscapesTableNameInEveryMetadataQuerycallsPgSqlSchemaReflectorTest::testExactSqlForArrayNoUnderscorecallsPgSqlSchemaReflectorTest::testExactSqlForArrayWithUnderscorecallsPgSqlSchemaReflectorTest::testExactSqlForBigintcallsPgSqlSchemaReflectorTest::testExactSqlForBooleancallsPgSqlSchemaReflectorTest::testExactSqlForByteacallsPgSqlSchemaReflectorTest::testExactSqlForCharNoLencallsPgSqlSchemaReflectorTest::testExactSqlForCharWithLencallsPgSqlSchemaReflectorTest::testExactSqlForDatecallsPgSqlSchemaReflectorTest::testExactSqlForDoublePrecisioncallsPgSqlSchemaReflectorTest::testExactSqlForIntegerNotNullcallsPgSqlSchemaReflectorTest::testExactSqlForJsoncallsPgSqlSchemaReflectorTest::testExactSqlForJsonbcallsPgSqlSchemaReflectorTest::testExactSqlForNumericBarecallsPgSqlSchemaReflectorTest::testExactSqlForNumericPrecisionOnlycallsPgSqlSchemaReflectorTest::testExactSqlForNumericPrecisionScalecallsPgSqlSchemaReflectorTest::testExactSqlForRealcallsPgSqlSchemaReflectorTest::testExactSqlForSmallintcallsPgSqlSchemaReflectorTest::testExactSqlForTextcallsPgSqlSchemaReflectorTest::testExactSqlForTimecallsPgSqlSchemaReflectorTest::testExactSqlForTimestampcallsPgSqlSchemaReflectorTest::testExactSqlForTimestamptzcallsPgSqlSchemaReflectorTest::testExactSqlForTimetzcallsPgSqlSchemaReflectorTest::testExactSqlForUserDefinedCitextcallsPgSqlSchemaReflectorTest::testExactSqlForUserDefinedCustomcallsPgSqlSchemaReflectorTest::testExactSqlForUserDefinedEmptycallsPgSqlSchemaReflectorTest::testExactSqlForUserDefinedHstorecallsPgSqlSchemaReflectorTest::testExactSqlForUserDefinedLtreecallsPgSqlSchemaReflectorTest::testExactSqlForUuidcallsPgSqlSchemaReflectorTest::testExactSqlForVarcharNoLencallsPgSqlSchemaReflectorTest::testExactSqlForVarcharWithLencallsPgSqlSchemaReflectorTest::testExactSqlPreservesBitWidthscallsPgSqlSchemaReflectorTest::testExactSqlPreservesUnboundedBitTypescallsPgSqlSchemaReflectorTest::testExactSqlWithCompositePkcallsPgSqlSchemaReflectorTest::testExactSqlWithCompositeUniquecallsPgSqlSchemaReflectorTest::testExactSqlWithDefaultcallsPgSqlSchemaReflectorTest::testExactSqlWithPkcallsPgSqlSchemaReflectorTest::testExactSqlWithPkAndUniquecallsPgSqlSchemaReflectorTest::testExactSqlWithUniquecallsPgSqlSchemaReflectorTest::testForeignKeyQueryIsExactAndEscapesTableNamecallsPgSqlSchemaReflectorTest::testForeignKeysAreReconstructedWithCompositeColumnsAndActionscallsPgSqlSchemaReflectorTest::testGetCreateStatementReturnsNullWhenNoColumnscallsPgSqlSchemaReflectorTest::testGetCreateStatementReturnsNullWhenQueryFailscallsPgSqlSchemaReflectorTest::testMalformedForeignKeyRowsAreSkippedIndependentlycallsPgSqlSchemaReflectorTest::testMissingColumnNameDefaultscallsPgSqlSchemaReflectorTest::testMissingDataTypeDefaultsToTextcallsPgSqlSchemaReflectorTest::testNumericIntPrecisionAndScaleExactOutputcallsPgSqlSchemaReflectorTest::testNumericNonIntPrecisionCastsToIntcallsPgSqlSchemaReflectorTest::testNumericPrecisionOnlyNonIntCastsToIntcallsPgSqlSchemaReflectorTest::testNumericStringPrecisionOnlycallsPgSqlSchemaReflectorTest::testNumericStringPrecisionScalecallsPgSqlSchemaReflectorTest::testPartialUniqueIndexesReflectsPartialUniqueIndexesWithoutFlatteningTheirPredicatecallsPgSqlSchemaReflectorTest::testPkNonStringColumnNameIsSkippedcallsPgSqlSchemaReflectorTest::testPkQueryReturnsFalseStillWorkscallsPgSqlSchemaReflectorTest::testReflectAllExactResultscallsPgSqlSchemaReflectorTest::testReflectAllMultipleTablesExactResultscallsPgSqlSchemaReflectorTest::testReflectAllReturnsEmptyOnFailurecallsPgSqlSchemaReflectorTest::testReflectAllSkipsInvalidNamescallsPgSqlSchemaReflectorTest::testReflectAllSkipsTablesWithNoColumnscallsPgSqlSchemaReflectorTest::testReflectsDomainWithoutSchemaAsAQuotedTypecallsPgSqlSchemaReflectorTest::testReflectsGeneratedAndIdentityColumnscallsPgSqlSchemaReflectorTest::testReflectsSchemaQualifiedDomainTypeInsteadOfItsBaseTypecallsPgSqlSchemaReflectorTest::testReflectViewsReturnsEmptyWhenQueryFailscallsPgSqlSchemaReflectorTest::testReflectViewsSkipsMalformedRowscallsPgSqlSchemaReflectorTest::testTableNameEscapingcallsPgSqlSchemaReflectorTest::testTableNameWithSingleQuoteInReflectAllcallsPgSqlSchemaReflectorTest::testUniqueConstraintNonStringColumnsAreSkippedcallsPgSqlSchemaReflectorTest::testUniqueQueryReturnsFalseStillWorkscallsPgSqlSchemaReflectorTest::testUnknownDataTypePassedThroughcallsPgSqlSchemaReflectorTest::testVarcharStringLengthcallsPgSqlSchemaReflectorTest::testVerifyColumnsQueryExactcallsPgSqlSchemaReflectorTest::testVerifyPkQueryExactcallsPgSqlSchemaReflectorTest::testVerifyReflectAllListQuerycallsPartitionKeysTest::testReflectIgnoresMalformedRowsAndKeepsThePartitionExpressioncallsTableQueriesTest::testColumnsQueriesTheCurrentSchemaAndEscapesTheTableNamecallsTableQueriesTest::testForeignKeysQueriesTheCurrentSchemaAndEscapesTheTableNamecallsTableQueriesTest::testPrimaryKeyQueriesTheCurrentSchemaAndEscapesTheTableNamecallsTableQueriesTest::testUniqueIndexesQueriesTheCurrentSchemaAndEscapesTheTableNamecallsSqliteSchemaReflectorTest::testGetCreateStatementEscapesSingleQuotesInTableNamecallsSqliteSchemaReflectorTest::testGetCreateStatementReturnsNullWhenNoRowscallsSqliteSchemaReflectorTest::testGetCreateStatementReturnsNullWhenQueryFailscallsSqliteSchemaReflectorTest::testGetCreateStatementReturnsNullWhenSqlKeyMissingcallsSqliteSchemaReflectorTest::testGetCreateStatementReturnsNullWhenSqlNotStringcallsSqliteSchemaReflectorTest::testGetCreateStatementReturnsSqlcallsSqliteSchemaReflectorTest::testGetCreateStatementWithSingleQuoteInTableNamecallsSqliteSchemaReflectorTest::testReflectAllKeepsOnlyValidRowsAmongInvalidcallsSqliteSchemaReflectorTest::testReflectAllMultipleValidTablescallsSqliteSchemaReflectorTest::testReflectAllPrefersTemporaryTableWhenNamesCollidecallsSqliteSchemaReflectorTest::testReflectAllReturnsEmptyWhenQueryFailscallsSqliteSchemaReflectorTest::testReflectAllReturnsSqlValuescallsSqliteSchemaReflectorTest::testReflectAllReturnsTablescallsSqliteSchemaReflectorTest::testReflectAllSkipsInvalidRowscallsSqliteSchemaReflectorTest::testReflectAllSkipsMissingSqlKeycallsSqliteSchemaReflectorTest::testReflectAllSkipsRowsWithMissingNamecallsSqliteSchemaReflectorTest::testReflectAllSkipsRowsWithNonStringNamecallsSqliteSchemaReflectorTest::testReflectAllSkipsRowsWithNonStringSqlcallsSqliteSchemaReflectorTest::testReflectAllSkipsRowWithEmptyNameAndValidSqlcallsSqliteSchemaReflectorTest::testReflectAllSkipsRowWithValidNameAndEmptySqlcallsSqliteSchemaReflectorTest::testReflectViewsPrefersTemporaryAndSkipsMalformedRowscallsSqliteSchemaReflectorTest::testReflectViewsReturnsEmptyWhenQueryFailscallsMysqliResultProcessorTest::testProcessCreatesAnEmptyWriteResultcallsMysqliResultProcessorTest::testProcessPreservesTheOriginalDatabaseExceptioncallsMysqliResultProcessorTest::testProcessUsesNativeRowsForTheShadowMutationcallsSchemaInitializerTest::testPopulateRegistersColumnsPartialIndexesAndPartitionKeyscallsStatementSimulatorTest::testReadStatementReturnsFalseWhenExecutorFailscallsStatementSimulatorTest::testReadStatementReturnsRowCountcallsStatementSimulatorTest::testSimulateRefusesAWriteThePlanCarriesNoMutationForcallsStatementSimulatorTest::testUnsupportedSqlThrowscallsStatementSimulatorTest::testWriteStatementUpdatesShadowStorecallsSqliteSessionFactoryTest::testCreateRegistersReflectedViewscallsSqliteSessionFactoryTest::testCreateReturnsSessioncallsSqliteSessionFactoryTest::testCreateWithExistingTablesRegistersDefinitionscallsSqliteSessionFactoryTest::testCreateWithUnparseableSchemaSkipsTablecallsZtdMysqliStatementTest::testAttr_getReadsTheConfiguredNativeCursorModecallsZtdMysqliStatementTest::testAttr_setUpdatesTheNativeCursorModecallsZtdMysqliStatementTest::testCloseClosesTheDelegatedStatementcallsZtdMysqliStatementTest::testData_seekMovesTheNativeCursorcallsZtdMysqliStatementTest::testExecuteAppliesRowsToTheShadowStorecallsZtdMysqliStatementTest::testExecuteDoesNotRunASkippedPlancallsZtdMysqliStatementTest::testExecuteHonorsReadAndUnplannedParameterscallsZtdMysqliStatementTest::testExecuteReturnsFalseForNativeFailurescallsZtdMysqliStatementTest::testFetchWritesBoundResultVariablescallsZtdMysqliStatementTest::testFree_resultReleasesBufferedRowscallsZtdMysqliStatementTest::testGet_resultConsumesTheCachedNativeResultOncecallsZtdMysqliStatementTest::testGet_resultReturnsFalseForAStatementWithoutRowscallsZtdMysqliStatementTest::testGet_warningsReturnsTheNativeWarningcallsZtdMysqliStatementTest::testMore_resultsReturnsFalseAfterASingleResultcallsZtdMysqliStatementTest::testNext_resultReturnsFalseWithoutAnotherResultcallsZtdMysqliStatementTest::testNum_rowsReturnsTheNativeBufferedCountcallsZtdMysqliStatementTest::testPrepareReplacesTheDelegatedStatementcallsZtdMysqliStatementTest::testResetClearsTheSimulatedAffectedRowCountcallsZtdMysqliStatementTest::testResult_metadataReturnsNativeColumnInformationcallsZtdMysqliStatementTest::testSend_long_dataConcatenatesBinaryChunkscallsZtdMysqliStatementTest::testStore_resultBuffersTheNativeRowscallsZtdMysqliStatementTest::testZtdAffectedRowsReturnsTheNativeWriteCountcallsZtdMysqliTest::testAutocommitCommitsOrRollsBackTheShadowScopecallsZtdMysqliTest::testBegin_transactionCreatesAShadowRollbackScopecallsZtdMysqliTest::testCommitRetainsTheShadowRowscallsZtdMysqliTest::testConnectUsesTheSuppliedNativeCredentialscallsZtdMysqliTest::testFromMysqliPassesTheConnectionAndConfigurationToItsFactorycallsZtdMysqliTest::testPrepareAndQueriesPreserveNativeFalseResultscallsZtdMysqliTest::testPrepareWrapsRewriteFailurescallsZtdMysqliTest::testQueryReturnsFalseWhenThePreparedExecutionFailscallsZtdMysqliTest::testQueryReturnsTrueWithoutAResultSetcallsZtdMysqliTest::testReal_connectConnectsAnInitializedNativeHandlecallsZtdMysqliTest::testReal_queryAppliesTransactionStatementscallsZtdMysqliTest::testRollbackRestoresTheShadowSnapshotcallsZtdMysqliTest::testSavepointPreservesItsShadowSnapshotcallsZtdPdoStatementTest::testBindValueDelegatesToInnercallsZtdPdoStatementTest::testCloseCursorDelegatesToInnercallsZtdPdoStatementTest::testColumnCountDelegatesToInnercallsZtdPdoStatementTest::testExecuteDelegatesWhenNoPlancallsZtdPdoStatementTest::testExecuteDelegatesWhenNoPostProcessingNeededcallsZtdPdoStatementTest::testExecuteReturnsFalseWhenShouldExecuteIsFalsecallsZtdPdoStatementTest::testExecuteWithoutPostProcessingRunsNativeStatementOncecallsZtdPdoStatementTest::testExecuteWrapsSimulationFailureAsAdapterExceptioncallsZtdPdoStatementTest::testRowCountDelegatesToInnerWhenNoResultcalls
Relations§
Implemented by 3
Method calls 18
- method-call ZtdQuery\Session::execStatement() packages/ztd-query-core/src/Session.php:412
- method-call ZtdQuery\Session::execStatement() packages/ztd-query-core/src/Session.php:423
- method-call ZtdQuery\Platform\MySql\Connection\MySqlSessionSqlModeReflector::reflect() packages/ztd-query-mysql/src/Connection/MySqlSessionSqlModeReflector.php:26
- method-call ZtdQuery\Platform\MySql\Schema\MySqlSchemaReflector::getCreateStatement() packages/ztd-query-mysql/src/Schema/MySqlSchemaReflector.php:35
- method-call ZtdQuery\Platform\MySql\Schema\MySqlSchemaReflector::reflectAll() packages/ztd-query-mysql/src/Schema/MySqlSchemaReflector.php:53
- method-call ZtdQuery\Platform\MySql\Schema\MySqlSchemaReflector::reflectViews() packages/ztd-query-mysql/src/Schema/MySqlSchemaReflector.php:82
- method-call ZtdQuery\Platform\MySql\Schema\MySqlSchemaReflector::reflectViews() packages/ztd-query-mysql/src/Schema/MySqlSchemaReflector.php:93
- method-call ZtdQuery\Platform\Postgres\Schema\Partition\PgSqlPartitionReflector::reflect() packages/ztd-query-postgres/src/Schema/Partition/PgSqlPartitionReflector.php:34
- method-call ZtdQuery\Platform\Postgres\Schema\PgSqlSchemaReflector::reflectAll() packages/ztd-query-postgres/src/Schema/PgSqlSchemaReflector.php:70
- method-call ZtdQuery\Platform\Postgres\Schema\PgSqlSchemaReflector::reflectViews() packages/ztd-query-postgres/src/Schema/PgSqlSchemaReflector.php:110
- method-call ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\PartitionKeys::reflect() packages/ztd-query-postgres/src/Schema/Reflection/Catalog/PartitionKeys.php:33
- method-call ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\TableQueries::columns() packages/ztd-query-postgres/src/Schema/Reflection/Catalog/TableQueries.php:30
- method-call ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\TableQueries::primaryKey() packages/ztd-query-postgres/src/Schema/Reflection/Catalog/TableQueries.php:47
- method-call ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\TableQueries::uniqueIndexes() packages/ztd-query-postgres/src/Schema/Reflection/Catalog/TableQueries.php:66
- method-call ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\TableQueries::foreignKeys() packages/ztd-query-postgres/src/Schema/Reflection/Catalog/TableQueries.php:92
- method-call ZtdQuery\Platform\Sqlite\Schema\SqliteSchemaReflector::getCreateStatement() packages/ztd-query-sqlite/src/Schema/SqliteSchemaReflector.php:46
- method-call ZtdQuery\Platform\Sqlite\Schema\SqliteSchemaReflector::reflectAll() packages/ztd-query-sqlite/src/Schema/SqliteSchemaReflector.php:76
- method-call ZtdQuery\Platform\Sqlite\Schema\SqliteSchemaReflector::reflectViews() packages/ztd-query-sqlite/src/Schema/SqliteSchemaReflector.php:118
Type declarations 17
- type ZtdQuery\Platform\SessionFactory packages/ztd-query-core/src/Platform/SessionFactory.php:35
- type ZtdQuery\Session packages/ztd-query-core/src/Session.php:53
- type ZtdQuery\Session packages/ztd-query-core/src/Session.php:88
- type ZtdQuery\Platform\MySql\Connection\MySqlSessionSqlModeReflector packages/ztd-query-mysql/src/Connection/MySqlSessionSqlModeReflector.php:17
- type ZtdQuery\Platform\MySql\MySqlSessionFactory packages/ztd-query-mysql/src/MySqlSessionFactory.php:40
- type ZtdQuery\Platform\MySql\Schema\MySqlSchemaReflector packages/ztd-query-mysql/src/Schema/MySqlSchemaReflector.php:20
- type ZtdQuery\Platform\MySql\Schema\MySqlSchemaReflector packages/ztd-query-mysql/src/Schema/MySqlSchemaReflector.php:25
- type ZtdQuery\Platform\Postgres\PgSqlSessionFactory packages/ztd-query-postgres/src/PgSqlSessionFactory.php:54
- type ZtdQuery\Platform\Postgres\Schema\Partition\PgSqlPartitionReflector packages/ztd-query-postgres/src/Schema/Partition/PgSqlPartitionReflector.php:19
- type ZtdQuery\Platform\Postgres\Schema\PgSqlSchemaReflector packages/ztd-query-postgres/src/Schema/PgSqlSchemaReflector.php:21
- type ZtdQuery\Platform\Postgres\Schema\PgSqlSchemaReflector packages/ztd-query-postgres/src/Schema/PgSqlSchemaReflector.php:31
- type ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\PartitionKeys packages/ztd-query-postgres/src/Schema/Reflection/Catalog/PartitionKeys.php:21
- type ZtdQuery\Platform\Postgres\Schema\Reflection\Catalog\TableQueries packages/ztd-query-postgres/src/Schema/Reflection/Catalog/TableQueries.php:20
- type ZtdQuery\Platform\Postgres\Session\SchemaInitializer packages/ztd-query-postgres/src/Session/SchemaInitializer.php:24
- type ZtdQuery\Platform\Sqlite\Schema\SqliteSchemaReflector packages/ztd-query-sqlite/src/Schema/SqliteSchemaReflector.php:21
- type ZtdQuery\Platform\Sqlite\Schema\SqliteSchemaReflector packages/ztd-query-sqlite/src/Schema/SqliteSchemaReflector.php:31
- type ZtdQuery\Platform\Sqlite\SqliteSessionFactory packages/ztd-query-sqlite/src/SqliteSessionFactory.php:42