mirror of
https://github.com/vrana/adminer.git
synced 2025-08-12 09:34:10 +02:00
Fix handling of POINT data type (bug #3582578)
This commit is contained in:
@@ -363,7 +363,7 @@ function editingTypeChange(type) {
|
||||
el.className = (/(char|text|enum|set)$/.test(text) ? '' : 'hidden');
|
||||
}
|
||||
if (el.name == name + '[unsigned]') {
|
||||
el.className = (/(int|float|double|decimal)$/.test(text) ? '' : 'hidden');
|
||||
el.className = (/((^|[^o])int|float|double|decimal)$/.test(text) ? '' : 'hidden');
|
||||
}
|
||||
if (el.name == name + '[on_update]') {
|
||||
el.className = (text == 'timestamp' ? '' : 'hidden');
|
||||
|
Reference in New Issue
Block a user