questdb / documentation

QuestDB documentation
https://questdb.io/docs/
Apache License 2.0
0 stars 8 forks source link

Wrong naming of INTEGER vs. INT #54

Closed juocal closed 4 days ago

juocal commented 1 month ago

Hey there,

I possibly found a issue regarding the naming of data types.

You are using INTEGER in this example in the documentation: https://questdb.io/docs/reference/sql/alter-table-change-column-type/#examples

It should be INT as there is no INTEGER type (anymore?)

Change from:

ALTER TABLE employees ALTER COLUMN age TYPE INTEGER;

to:

ALTER TABLE employees ALTER COLUMN age TYPE INT;

Also in the text, there is the mention of INTEGER. This issue should be used to find other occurances of INTEGER in the documentation, as there might be other examples where INTEGER is used instead of INT

Xtha-Sunil commented 1 week ago

I will like to work on this. Could you please assign this to me.