Skip to content
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

Closed
subhra78 opened this issue May 5, 2023 · 4 comments · Fixed by dolthub/go-mysql-server#1756

Comments

@subhra78
Copy link

subhra78 commented May 5, 2023

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

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
); 
@timsehn timsehn added the enhancement New feature or request label May 5, 2023
@timsehn
Copy link
Contributor

timsehn commented May 5, 2023

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

@timsehn timsehn changed the title Auto ID generate Allow m5hash (and possibly other functions) in column default values May 5, 2023
@fulghum
Copy link
Contributor

fulghum commented May 5, 2023

@subhra78 – the md5 hash function in mysql is md5. I swapped that function name in the query below and confirmed that it works on Dolt:

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.

@timsehn timsehn closed this as completed May 5, 2023
@timsehn timsehn changed the title Allow m5hash (and possibly other functions) in column default values Error should be "function m5hash does not exists" not "function m5hash on column id is not valid for usage in a default value May 5, 2023
@timsehn timsehn added sql Issue with SQL bad error message and removed enhancement New feature or request labels May 5, 2023
@timsehn timsehn reopened this May 5, 2023
@timsehn
Copy link
Contributor

timsehn commented May 5, 2023

I re-opened because the error message is bad. We should fix that.

But @subhra78 you should be good to go now.

@subhra78
Copy link
Author

subhra78 commented May 6, 2023

Thank you so much. It worked. Really apprentice the help.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants