-
-
Notifications
You must be signed in to change notification settings - Fork 548
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error should be "function m5hash
does not exists" not "function m5hash
on column id
is not valid for usage in a default value
#5887
Comments
This should work. Reproed $ dolt init --fun
Successfully initialized dolt data repository.
$ dolt sql -q "CREATE TABLE your_table_name (
id VARCHAR(37) NOT NULL PRIMARY KEY DEFAULT CONCAT('MS001', m5hash(name)),
name VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
)"
Error parsing SQL
syntax error at position 86 near 'CONCAT'
CREATE TABLE your_table_name (
id VARCHAR(37) NOT NULL PRIMARY KEY DEFAULT CONCAT('MS001', m5hash(name)),
^
syntax error at position 86 near 'CONCAT' So you need parentheses around default expressions. So the proper query is CREATE TABLE your_table_name (
id VARCHAR(37) NOT NULL PRIMARY KEY DEFAULT(CONCAT('MS001', m5hash(name))),
name VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) But that also fails: $ dolt sql -q "CREATE TABLE your_table_name (
id VARCHAR(37) NOT NULL PRIMARY KEY DEFAULT(CONCAT('MS001', m5hash(name))),
name VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
)"
error on line 1 for query CREATE TABLE your_table_name (
id VARCHAR(37) NOT NULL PRIMARY KEY DEFAULT(CONCAT('MS001', m5hash(name))),
name VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
): function `m5hash` on column `id` is not valid for usage in a default value
function `m5hash` on column `id` is not valid for usage in a default value |
m5hash
(and possibly other functions) in column default values
@subhra78 – the md5 hash function in mysql is CREATE TABLE your_table_name (
id VARCHAR(37) NOT NULL PRIMARY KEY DEFAULT(CONCAT('MS001', md5(name))),
name VARCHAR(255) NOT NULL, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
); That should give you what you're looking for. Let us know if you hit any other snags and we're always happy to help. |
m5hash
(and possibly other functions) in column default valuesm5hash
does not exists" not "function m5hash
on column id
is not valid for usage in a default value
I re-opened because the error message is bad. We should fix that. But @subhra78 you should be good to go now. |
Thank you so much. It worked. Really apprentice the help. |
Hi, is there any way to auto generate row ID like using m5hash or anything? So, per entry I will keep the id column blank and it should auto generate when the row is inserted.
Like I tried this query but it gives error
The text was updated successfully, but these errors were encountered: