Dmitry Yemanov
Dmitry Yemanov
From the SQL spec: > If all of the data types in DTS are exact numeric, then the result data type is exact numeric with > implementation-defined precision and with...
Yes, but as I said returning SQL_INT64 instead of SQL_LONG may upset some users (those using static type binding in their applications). We already had the same compatibility issue after...
The issue is related to #6901. Simplified test case (based on the examples in the mentioned ticket): ``` #sql create table t (id int, val int); insert into t values...
It defines replication settings per database. I'd hate to have them moved to the DDL management.
Replication (using the built-in implementation) is impossible without [at least] the configured paths (target connection string / journal directories). This is why we need configuration. Currently we check the database...
@aafemt, If you enable publication, you usually want it to start immediately. But it simply cannot happen if configuration is missing, so what's the point? Moreover, if DBA enabled publication...
@aafemt, I seem to misunderstood your last suggestion. Of course, error will be thrown not only during enable DDL but also during write operations.
Views are not "built", their plan is merged into the outer query plan and then executed as decided by the optimizer. Nobody says TABLE_A should be read first (and be...
Computed fields are restored as regular ones at the first stage and only later are altered to be computed ones. This is done to prevent "unrestorable backup" issues when computed...
We were considering to get rid of the 64KB record limit (or maybe raise it up to some sanity threshold e.g. 1MB), so this problem may disappear automagically.