-
Notifications
You must be signed in to change notification settings - Fork 67
Partitioning of the tables having case-sensitive names #13
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
Comments
Hello, If you create your table CREATE TABLE Info (...) The exact table name will be the lowercase of the table name that you input. So the following statement might work: SELECT create_range_partitions('info', 'date', '1451606400000'::bigint, '2419200000'::bigint); Hope this helps, |
Hello, thanks for your answer! Best regards, |
Hi Eugene, Thank you for your report! |
I've updated PL functions so that they can accept case-sensitive table names. Now you can write something like:
I'll deal with case-sensitive attributes a little later. |
Проблема с партицией таблицы с названием Info.
При выполнении запроса:
SELECT create_range_partitions('Info', 'date', '1451606400000'::bigint, '2419200000'::bigint)
получаю 7 ERROR: relation "info" does not exist.
При выполнении запроса:
SELECT create_range_partitions("Info", 'date', '1451606400000'::bigint, '2419200000'::bigint);
получаю 7 ERROR: column "Info" does not exist.
The text was updated successfully, but these errors were encountered: