tarantool / ddl

The DDL module enables you to describe data schema in a declarative YAML-based format.
BSD 2-Clause "Simplified" License
12 stars 6 forks source link

Wrong sharding function check? #83

Closed Totktonada closed 2 years ago

Totktonada commented 2 years ago

https://github.com/tarantool/ddl/blob/c88c3eacb530a4739311819b590953735833b957/ddl/check.lua#L745-L764

Say, for 'foo.bar' we'll check _G['foo.bar'], not _G.foo.bar.

~BTW, shouldn't we use strict-mode-checked access instead of rawget(_G, <...>)?~ (not within this issue).