Error when creating new table #12055
-
|
dBeaver is giving me errors when I try to create a new table System information:
Connection specification:
Describe the problem you're observing:When I try to create a new table, I get an error. I have been creating tables all day with no issue. I can not think of any specific action that caused this problem to arise. I have tested trying to create a table via another program and it worked. I can not get dBeaver to make any more tables without an error. Problem Progression
Steps to reproduce:
CREATE TABLE Testy.McTestFace (
)
ENGINE=InnoDB
DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci;
Include any warning/errors/backtraces from the logsError WindowTop of Error WindowMore Details WindowLog Fileseclipse.buildId=unknown
java.version=11.0.8
java.vendor=AdoptOpenJDK
BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US
Framework arguments: -keyring /Users/bentleyhensel/.eclipse_keyring
Command-line arguments: -os macosx -ws cocoa -arch x86_64 -keyring /Users/bentleyhensel/.eclipse_keyring
org.jkiss.dbeaver.model
Error
Thu Apr 08 14:52:51 EDT 2021
You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ')
ENGINE=InnoDB
DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_general_ci' at line 3 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hello @TheBoatyMcBoatFace. AFAIK, it's impossible to create a table without specifying at least one column in MariaDB. Please try to change your create statement and everything should be fine. |
Beta Was this translation helpful? Give feedback.

Hello @TheBoatyMcBoatFace. AFAIK, it's impossible to create a table without specifying at least one column in MariaDB. Please try to change your create statement and everything should be fine.