Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Created by
brew bump
Created with
brew bump-formula-pr
.release notes
sql_mode
column access ofdolt_schemas
tableThe databases that were created before
sql_mode
column was added todolt_schemas
table does not have this column, so access this column needs to be check beforehand.GEOMETRY
types asBLOB
sTo get around the 65k limit on our fields, we should store
GEOMETRY
types asBLOB
s.Additionally, MySQL stores these as out of band BLOBs.
This will also probably worsen the performance of
GEOMETRY
types as it just takes longer to reference.Fixes "value exceeded max field size of 65kb" when inserting large geometry dolthub/dolt#6927
go-mysql-server
re: Avoid deserializing value on FK check dolthub/dolt#6957 It is expensive and unnecessary to deserialize blobs during FK reference check lookups.
The randIO parameter for LOOKUP_JOIN costing was perhaps too strict, since that cost is already stacked on top of the sequential cost. This isn't a replacement for better costing, but boosts TPC-C perf a bit and isn't less correct than the previous version.
This was the motivating query, executed as a HASH_JOIN before:
ST_POINTFROMWKB()
with no argumentsvitess
fixes Cannot
DROP
column if it's namedgeometry
dolthub/dolt#6950int1
,int2
,int3
,int4
,int8
aliasesfixes support
int1
,int2
, ... types dolthub/dolt#6900Logging a couple more error handling spots. Changing the
Handler
interface to passmysql.PrepareData
into theComPrepare
function so that GMS can log the params count at a debug level.Related GMS PR: Logging improvements for prepared statements dolthub/go-mysql-server#2098
Closed Issues
DROP
column if it's namedgeometry