You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when column type is decimal(30,8) like:
SQL = """CREATE TABLE foo (
id decimal(30,8) primary key,
title varchar(200) not null,
description text);"""
result is :
NAME: id DEFINITION: decimal 30
NAME: 8 DEFINITION: primary key
NAME: title DEFINITION: varchar 200 not null
NAME: description DEFINITION: text
so how to fix this?
The text was updated successfully, but these errors were encountered:
when column type is decimal(30,8) like:
SQL = """CREATE TABLE foo (
id decimal(30,8) primary key,
title varchar(200) not null,
description text);"""
result is :
NAME: id DEFINITION: decimal 30
NAME: 8 DEFINITION: primary key
NAME: title DEFINITION: varchar 200 not null
NAME: description DEFINITION: text
so how to fix this?
The text was updated successfully, but these errors were encountered: