Other components
Component | Translated | Unfinished | Unfinished words | Unfinished characters | Untranslated | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|---|
Documentation: reference/reference_lua/compat/compat_tutorial | 0 | 0 | 0 | 0 | 7 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/sharding/vshard_architecture | 0 | 0 | 0 | 0 | 2 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/replication/repl_reseed | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/engines/memtx | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: reference/reference_lua/datetime/interval_arithm | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/engines/vinyl | 0 | 0 | 0 | 0 | 5 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/engines/index | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/sharding/index | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/index | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
Documentation: concepts/engines/memtx_vinyl_diff | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
Overview
Project website | www.tarantool.io/en/doc/latest |
---|---|
Translation process |
|
Source code repository |
git@github.com:tarantool/doc.git
|
Repository branch | test-weblate |
Weblate repository |
http://weblate.tarantool.io/git/testing_project/documentation-referencereference_sqlsql-features/
|
File mask | locale/*/LC_MESSAGES/reference/reference_sql/sql_plus_lua.po |
Translation file | Not available |
Last change | None |
Last author | None |
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 106 | 4,271 | 35,926 | |||
Translated | 100% | 106 | 100% | 4,271 | 100% | 35,926 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 100% | 106 | 100% | 4,271 | 100% | 35,926 |
Failing checks | 3% | 4 | 5% | 236 | 6% | 2,324 |
Strings with suggestions | 0% | 0 | 0% | 0 | 0% | 0 |
Untranslated strings | 0% | 0 | 0% | 0 | 0% | 0 |
Quick numbers
and previous 30 days
Trends of last 30 days
—
Hosted words
+100%
—
Hosted strings
+100%
—
Translated
+100%
—
Contributors
—
Browse all translation changes
106 | File in original format as translated in the repository | gettext PO file | |||||||
---|---|---|---|---|---|---|---|---|---|
106 | All strings, converted files enriched with comments; suitable for offline translation | CSV | gettext MO | gettext PO | TBX | TMX | XLIFF 1.1 with gettext extensions | XLIFF 1.1 | XLSX |
function _TABLE_CONSTRAINTS_OPTS_UNIQUE (opts) return require('msgpack').decode(opts).unique end
box.schema.func.create('_TABLE_CONSTRAINTS_OPTS_UNIQUE',
{language = 'LUA',
returns = 'boolean',
body = [[function (opts) return require('msgpack').decode(opts).unique end]],
param_list = {'string'},
exports = {'LUA', 'SQL'},
is_sandboxed = false,
setuid = false,
is_deterministic = false})
box.schema.role.grant('public', 'execute', 'function', '_TABLE_CONSTRAINTS_OPTS_UNIQUE')
pcall(function ()
box.schema.role.revoke('public', 'read', 'space', '_TABLE_CONSTRAINTS', {if_exists = true})
end)
box.execute([[DROP VIEW IF EXISTS _table_constraints;]])
box.execute([[
CREATE VIEW _table_constraints AS SELECT
CAST(NULL AS STRING) AS constraint_catalog,
CAST(NULL AS STRING) AS constraint_schema,
"name" AS constraint_name,
(SELECT "name" FROM "_vspace" x WHERE x."id" = y."id") AS table_name,
CASE WHEN "iid" = 0 THEN 'PRIMARY' ELSE 'UNIQUE' END AS constraint_type,
CAST(NULL AS STRING) AS initially_deferrable,
CAST(NULL AS STRING) AS deferred,
CAST(NULL AS STRING) AS enforced,
"id" AS id,
"iid" AS iid,
"type" AS index_type
FROM "_vindex" y
WHERE _table_constraints_opts_unique("opts") = TRUE;
]])
box.schema.role.grant('public', 'read', 'space', '_TABLE_CONSTRAINTS')