Mysql: Add SRID column option (#1852)

This commit is contained in:
Mohamed Abdeen 2025-05-23 06:09:05 +01:00 committed by GitHub
parent 05d7ffb1d5
commit bf2b72fbe0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 21 additions and 0 deletions

View file

@ -3745,6 +3745,11 @@ fn parse_begin_without_transaction() {
mysql().verified_stmt("BEGIN");
}
#[test]
fn parse_geometric_types_srid_option() {
mysql_and_generic().verified_stmt("CREATE TABLE t (a geometry SRID 4326)");
}
#[test]
fn parse_double_precision() {
mysql().verified_stmt("CREATE TABLE foo (bar DOUBLE)");