PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB` REDROOM
PHP 5.6.40
Preview: lex_charset.h Size: 23.74 KB
//usr/include/mysql/server/private/lex_charset.h

/* Copyright (c) 2021, 2022, MariaDB Corporation.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; version 2 of the License.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335  USA */

#ifndef LEX_CHARSET_INCLUDED
#define LEX_CHARSET_INCLUDED


/*
  An extention for Charset_loader_mysys,
  with server error and warning support.
*/
class Charset_loader_server: public Charset_loader_mysys
{
public:
  using Charset_loader_mysys::Charset_loader_mysys;
  void raise_unknown_collation_error(const char *name) const;
  void raise_not_applicable_error(const char *cs, const char *cl) const;

  /*
    Find an exact collation by name.
    Raise an error on a faulure.

    @param cs              - the character set
    @param collation_name  - the collation name, e.g. "utf8_bin"
    @param my_flags        - my flags, e.g. MYF(WME)
    @returns               - a NULL pointer in case of failure, or
                             a CHARSET_INFO pointer on success.
  */

  CHARSET_INFO *
    get_exact_collation_or_error(const char *name, myf my_flags= MYF(0))
  {
    CHARSET_INFO *ci= get_exact_collation(name, my_flags);
    if (!ci)
      raise_unknown_collation_error(name);
    return ci;
  }

  /*
    Find an exact collation by a character set and a
    contextually typed collation name.
    Raise an error on in case of a faulure.

    @param cs              - the character set
    @param context_cl_name - the context name, e.g. "uca1400_cs_ci"
    @param my_flags        - my flags, e.g. MYF(WME)
    @returns               - a NULL pointer in case of failure, or
                             a CHARSET_INFO pointer on success.
  */
  CHARSET_INFO *
    get_exact_collation_by_context_name_or_error(CHARSET_INFO *cs,
                                                 const char *name,
                                                 myf my_flags= MYF(0))
  {
    CHARSET_INFO *ci= get_exact_collation_by_context_name(cs, name, my_flags);
    if (!ci)
      raise_not_applicable_error(cs->cs_name.str, name);
    return ci;
  }

  /*
    Find an abstract context collation by name.
    Raise an error on a faulure.
    The returned pointer needs to be resolved to a character set name.
    It should not be passed directly to the character set routines.

    @param cs              - the character set
    @param context_cl_name - the context name, e.g. "uca1400_cs_ci"
    @param my_flags        - my flags, e.g. MYF(WME)
    @returns               - a NULL pointer in case of failure, or
                             a CHARSET_INFO pointer on success.
  */

  CHARSET_INFO *
    get_context_collation_or_error(const char *collation_name,
                                   myf my_flags= MYF(0))
  {
    CHARSET_INFO *ci= get_context_collation(collation_name, my_flags);
    if (!ci)
      raise_unknown_collation_error(collation_name);
    return ci;
  }

  /*
    Find an exact binary collation in the given character set.
    Raise an error on a faulure.

    @param cs              - the character set
    @param my_flags        - my flags, e.g. MYF(WME)
    @returns               - a NULL pointer in case of failure, or
                             a CHARSET_INFO pointer on success.
  */

  CHARSET_INFO *
    get_bin_collation_or_error(CHARSET_INFO *cs,
                               myf my_flags= MYF(0))
  {
    const char *cs_name= cs->cs_name.str;
    if (!(cs= get_bin_collation(cs, my_flags)))
    {
      char tmp[65];
      strxnmov(tmp, sizeof(tmp)-1, cs_name, "_bin", NULL);
      raise_unknown_collation_error(tmp);
    }
    return cs;
  }

  /*
    Find an exact default collation in the given character set.
    This routine does not fail.
    Any character set must have a default collation.

    @param cs              - the character set
    @param my_flags        - my flags, e.g. MYF(WME)
    @returns               - a CHARSET_INFO pointer
  */

  CHARSET_INFO *get_default_collation(CHARSET_INFO *cs,
                                      myf my_flags= MYF(0))
  {
    return Charset_loader_mysys::get_default_collation(cs, my_flags);
  }
};


/////////////////////////////////////////////////////////////////////

/*
  An exact character set, e.g:
    CHARACTER SET latin1
*/
class Lex_exact_charset
{
  CHARSET_INFO *m_ci;
public:
  explicit Lex_exact_charset(CHARSET_INFO *ci)
   :m_ci(ci)
  {
    DBUG_ASSERT(m_ci);
    DBUG_ASSERT(m_ci->state & MY_CS_PRIMARY);
  }
  CHARSET_INFO *charset_info() const { return m_ci; }
  bool raise_if_not_equal(const Lex_exact_charset &rhs) const;
  bool raise_if_not_applicable(const class Lex_exact_collation &cl) const;
};


/*
  An optional contextually typed character set:
    [ CHARACTER SET DEFAULT ]
*/
class Lex_opt_context_charset_st
{
  /*
    Currently we support only DEFAULT as a possible value.
    So "bool" is enough.
  */
  bool m_had_charset_default;
public:
  void init()
  {
    m_had_charset_default= false;
  }
  void merge_charset_default()
  {
    /*
      Ok to specify CHARACTER SET DEFAULT multiple times.
      No error raised here.
    */
    m_had_charset_default= true;
  }
  bool is_empty() const
  {
    return !m_had_charset_default;
  }
  bool is_contextually_typed_charset_default() const
  {
    return m_had_charset_default;
  }
};


/*
  A contextually typed collation, e.g.:
    COLLATE DEFAULT
    CHAR(10) BINARY
*/
class Lex_context_collation
{
  CHARSET_INFO *m_ci;
public:
  explicit Lex_context_collation(CHARSET_INFO *ci)
   :m_ci(ci)
  {
    DBUG_ASSERT(ci);
  }
  CHARSET_INFO *charset_info() const { return m_ci; }
  bool is_contextually_typed_collate_default() const
  {
    return m_ci == &my_collation_contextually_typed_default;
  }
  bool is_contextually_typed_binary_style() const
  {
    return m_ci == &my_collation_contextually_typed_binary;
  }
  bool raise_if_not_equal(const Lex_context_collation &cl) const;
  /*
    Skip the character set prefix, return the suffix.
      utf8mb4_uca1400_as_ci -> uca1400_as_ci
  */
  LEX_CSTRING collation_name_context_suffix() const
  {
    return m_ci->get_collation_name(MY_COLLATION_NAME_MODE_CONTEXT);
  }
  LEX_CSTRING collation_name_for_show() const;
};


/*
  An exact collation, e.g.
    COLLATE latin1_swedish_ci
*/
class Lex_exact_collation
{
  CHARSET_INFO *m_ci;
public:
  explicit Lex_exact_collation(CHARSET_INFO *ci)
   :m_ci(ci)
  {
    DBUG_ASSERT(ci);
  }
  CHARSET_INFO *charset_info() const { return m_ci; }
  // EXACT + EXACT
  bool raise_if_not_equal(const Lex_exact_collation &cl) const;
  // EXACT + CONTEXT
  // CONTEXT + EXACT
  bool raise_if_conflicts_with_context_collation(const Lex_context_collation &,
                                                 bool reverse_order) const;
};


/*
  Parse time COLLATE clause:
    COLLATE colation_name
  The collation can be either exact or contextual:
    COLLATE latin1_bin
    COLLATE DEFAULT
*/
class Lex_extended_collation_st
{
public:
  enum Type
  {
    TYPE_EXACT,
    TYPE_CONTEXTUALLY_TYPED
  };
protected:
  CHARSET_INFO *m_ci;
  Type m_type;
public:
  void init(CHARSET_INFO *ci, Type type)
  {
    m_ci= ci;
    m_type= type;
  }
  CHARSET_INFO *charset_info() const { return m_ci; }
  Type type() const { return m_type; }
  LEX_CSTRING collation_name_for_show() const
  {
    switch (m_type) {
    case TYPE_CONTEXTUALLY_TYPED:
      return Lex_context_collation(m_ci).collation_name_for_show();
    case TYPE_EXACT:
      return m_ci->coll_name;
    }
    DBUG_ASSERT(0);
    return m_ci->coll_name;
  }
  static Lex_extended_collation_st collate_default()
  {
    Lex_extended_collation_st res;
    res.set_collate_default();
    return res;
  }
  void set_collate_default()
  {
    m_ci= &my_collation_contextually_typed_default;
    m_type= TYPE_CONTEXTUALLY_TYPED;
  }
  bool set_by_name(const char *name, myf my_flags); // e.g. MY_UTF8_IS_UTF8MB3
  bool raise_if_conflicts_with_context_collation(const Lex_context_collation &)
                                                 const;
  bool merge_exact_charset(const Lex_exact_charset &rhs);
  bool merge_exact_collation(const Lex_exact_collation &rhs);
  bool merge(const Lex_extended_collation_st &rhs);
};


class Lex_extended_collation: public Lex_extended_collation_st
{
public:
  Lex_extended_collation(CHARSET_INFO *ci, Type type)
  {
    init(ci, type);
  }
  Lex_extended_collation(const Lex_exact_collation &rhs)
  {
    init(rhs.charset_info(), TYPE_EXACT);
  }
  Lex_extended_collation(const Lex_context_collation &rhs)
  {
    init(rhs.charset_info(), TYPE_CONTEXTUALLY_TYPED);
  }
};


/*
  CHARACTER SET cs_exact [COLLATE cl_exact_or_context]
*/
class Lex_exact_charset_opt_extended_collate
{
  CHARSET_INFO *m_ci;
  bool m_with_collate;
public:
  Lex_exact_charset_opt_extended_collate(CHARSET_INFO *ci, bool with_collate)
   :m_ci(ci), m_with_collate(with_collate)
  {
    DBUG_ASSERT(m_ci);
    DBUG_ASSERT((m_ci->state & MY_CS_PRIMARY) || m_with_collate);
  }
  Lex_exact_charset_opt_extended_collate(const Lex_exact_charset &cs)
   :m_ci(cs.charset_info()), m_with_collate(false)
  {
    DBUG_ASSERT(m_ci);
    DBUG_ASSERT(m_ci->state & MY_CS_PRIMARY);
  }
  Lex_exact_charset_opt_extended_collate(const Lex_exact_collation &cl)
   :m_ci(cl.charset_info()), m_with_collate(true)
  {
    DBUG_ASSERT(m_ci);
  }
  bool with_collate() const { return m_with_collate; }
  CHARSET_INFO *find_bin_collation() const;
  CHARSET_INFO *find_default_collation() const;
  bool raise_if_charsets_differ(const Lex_exact_charset &cs) const;
  bool raise_if_not_applicable(const Lex_exact_collation &cl) const;
  /*
    Add another COLLATE clause (exact or context).
    So the full syntax looks like:
      CHARACTER SET cs [COLLATE cl] ... COLLATE cl2
  */
  bool merge_collation(const Lex_extended_collation_st &cl)
  {
    switch (cl.type()) {
    case Lex_extended_collation_st::TYPE_EXACT:
      return merge_exact_collation(Lex_exact_collation(cl.charset_info()));
    case Lex_extended_collation_st::TYPE_CONTEXTUALLY_TYPED:
      return merge_context_collation(Lex_context_collation(cl.charset_info()));
    }
    DBUG_ASSERT(0);
    return false;
  }
  bool merge_collation_override(const Lex_extended_collation_st &cl)
  {
    switch (cl.type()) {
    case Lex_extended_collation_st::TYPE_EXACT:
      return merge_exact_collation_override(
        Lex_exact_collation(cl.charset_info()));
    case Lex_extended_collation_st::TYPE_CONTEXTUALLY_TYPED:
      return merge_context_collation_override(
        Lex_context_collation(cl.charset_info()));
    }
    DBUG_ASSERT(0);
    return false;
  }
  /*
    Add a context collation:
      CHARACTER SET cs [COLLATE cl] ... COLLATE DEFAULT
  */
  bool merge_context_collation(const Lex_context_collation &cl);
  bool merge_context_collation_override(const Lex_context_collation &cl);
  /*
    Add an exact collation:
      CHARACTER SET cs [COLLATE cl] ... COLLATE latin1_bin
  */
  bool merge_exact_collation(const Lex_exact_collation &cl);
  bool merge_exact_collation_override(const Lex_exact_collation &cl);
  Lex_exact_collation collation() const
  {
    return Lex_exact_collation(m_ci);
  }
  Lex_exact_charset charset() const
  {
    if ((m_ci->state & MY_CS_PRIMARY))
      return Lex_exact_charset(m_ci);
    return Lex_exact_charset(find_default_collation());
  }
};


/*
  Parse time character set and collation for:
    [CHARACTER SET cs_exact] [COLLATE cl_exact_or_context]

  Can be:

  1. Empty (not specified on the column level):
     CREATE TABLE t1 (a CHAR(10)) CHARACTER SET latin2;        -- (1a)
     CREATE TABLE t1 (a CHAR(10));                             -- (1b)

  2. Precisely typed:
     CREATE TABLE t1 (a CHAR(10) COLLATE latin1_bin);          -- (2a)
     CREATE TABLE t1 (
       a CHAR(10) CHARACTER SET latin1 COLLATE latin1_bin);    -- (2b)

  3. Contextually typed:
     CREATE TABLE t2 (a CHAR(10) BINARY) CHARACTER SET latin2; -- (3a)
     CREATE TABLE t2 (a CHAR(10) BINARY);                      -- (3b)
     CREATE TABLE t2 (a CHAR(10) COLLATE DEFAULT)
       CHARACER SET latin2 COLLATE latin2_bin;                 -- (3c)

  In case of an empty or a contextually typed collation,
  it is a subject to later resolution, when the context
  character set becomes known in the end of the CREATE statement:
  - either after the explicit table level CHARACTER SET, like in (1a,3a,3c)
  - or by the inhereted database level CHARACTER SET, like in (1b,3b)

  Resolution happens in Type_handler::Column_definition_prepare_stage1().
*/
struct Lex_exact_charset_extended_collation_attrs_st
{
public:
  enum Type
  {
    TYPE_EMPTY= 0,
    TYPE_CHARACTER_SET= 1,
    TYPE_COLLATE_EXACT= 2,
    TYPE_CHARACTER_SET_COLLATE_EXACT= 3,
    TYPE_COLLATE_CONTEXTUALLY_TYPED= 4
  };

// Number of bits required to store enum Type values

#define LEX_CHARSET_COLLATION_TYPE_BITS 3
#define LEX_CHARSET_COLLATION_TYPE_MASK ((1<<LEX_CHARSET_COLLATION_TYPE_BITS)-1)

  static_assert(LEX_CHARSET_COLLATION_TYPE_MASK >=
                TYPE_COLLATE_CONTEXTUALLY_TYPED,
                 "Lex_exact_charset_extended_collation_attrs_st::Type bits");

protected:
  CHARSET_INFO *m_ci;
  Type m_type;
protected:
  static Type type_from_lex_collation_type(Lex_extended_collation_st::Type type)
  {
    switch (type) {
    case Lex_extended_collation_st::TYPE_EXACT:
      return TYPE_COLLATE_EXACT;
    case Lex_extended_collation_st::TYPE_CONTEXTUALLY_TYPED:
      return TYPE_COLLATE_CONTEXTUALLY_TYPED;
    }
    DBUG_ASSERT(0);
    return TYPE_COLLATE_EXACT;
  }
public:
  void init()
  {
    m_ci= NULL;
    m_type= TYPE_EMPTY;
  }
  void init(CHARSET_INFO *cs, Type type)
  {
    DBUG_ASSERT(cs || type == TYPE_EMPTY);
    m_ci= cs;
    m_type= type;
  }
  void init(const Lex_exact_charset &cs)
  {
    m_ci= cs.charset_info();
    m_type= TYPE_CHARACTER_SET;
  }
  void init(const Lex_exact_collation &cs)
  {
    m_ci= cs.charset_info();
    m_type= TYPE_COLLATE_EXACT;
  }
  void init(const Lex_exact_charset_opt_extended_collate &cscl)
  {
    if (cscl.with_collate())
      init(cscl.collation().charset_info(), TYPE_CHARACTER_SET_COLLATE_EXACT);
    else
      init(cscl.charset());
  }
  bool is_empty() const
  {
    return m_type == TYPE_EMPTY;
  }
  void set_charset(const Lex_exact_charset &cs)
  {
    m_ci= cs.charset_info();
    m_type= TYPE_CHARACTER_SET;
  }
  bool set_charset_collate_default(const Lex_exact_charset &cs)
  {
    CHARSET_INFO *ci;
    if (!(ci= Lex_exact_charset_opt_extended_collate(cs).
                find_default_collation()))
      return true;
    m_ci= ci;
    m_type= TYPE_CHARACTER_SET_COLLATE_EXACT;
    return false;
  }
  bool set_charset_collate_binary(const Lex_exact_charset &cs)
  {
    CHARSET_INFO *ci;
    if (!(ci= Lex_exact_charset_opt_extended_collate(cs).find_bin_collation()))
      return true;
    m_ci= ci;
    m_type= TYPE_CHARACTER_SET_COLLATE_EXACT;
    return false;
  }
  void set_collate_default()
  {
    m_ci= &my_collation_contextually_typed_default;
    m_type= TYPE_COLLATE_CONTEXTUALLY_TYPED;
  }
  void set_contextually_typed_binary_style()
  {
    m_ci= &my_collation_contextually_typed_binary;
    m_type= TYPE_COLLATE_CONTEXTUALLY_TYPED;
  }
  bool is_contextually_typed_collate_default() const
  {
    return Lex_context_collation(m_ci).is_contextually_typed_collate_default();
  }
  CHARSET_INFO *charset_info() const
  {
    return m_ci;
  }
  Type type() const
  {
    return m_type;
  }
  bool is_contextually_typed_collation() const
  {
    return m_type == TYPE_COLLATE_CONTEXTUALLY_TYPED;
  }
  CHARSET_INFO *resolved_to_character_set(CHARSET_INFO *cs) const;
  /*
    Merge the column CHARACTER SET clause to:
    - an exact collation name
    - a contextually typed collation
    "this" corresponds to `CHARACTER SET xxx [BINARY]`
    "cl" corresponds to the COLLATE clause
  */
  bool merge_column_charset_clause_and_collate_clause(
                    const Lex_exact_charset_extended_collation_attrs_st &cl)
  {
    switch (cl.type()) {
    case TYPE_EMPTY:
      return false;
    case TYPE_COLLATE_EXACT:
      return merge_exact_collation(Lex_exact_collation(cl.charset_info()));
    case TYPE_COLLATE_CONTEXTUALLY_TYPED:
      return merge_context_collation(Lex_context_collation(cl.charset_info()));
    case TYPE_CHARACTER_SET:
    case TYPE_CHARACTER_SET_COLLATE_EXACT:
      break;
    }
    DBUG_ASSERT(0);
    return false;
  }
  /*
    This method is used in the "attribute_list" rule to merge two independent
    COLLATE clauses (not belonging to a CHARACTER SET clause).
    "BINARY" and "COLLATE DEFAULT" are not possible
    in an independent COLLATE clause in a column attribute.
  */
  bool merge_column_collate_clause_and_collate_clause(
                    const Lex_exact_charset_extended_collation_attrs_st &cl)
  {
    DBUG_ASSERT(m_type != TYPE_CHARACTER_SET);
    switch (cl.type()) {
    case TYPE_EMPTY:
      return false;
    case TYPE_COLLATE_EXACT:
      return merge_exact_collation(Lex_exact_collation(cl.charset_info()));
    case TYPE_COLLATE_CONTEXTUALLY_TYPED:
      return merge_context_collation(Lex_context_collation(cl.charset_info()));
    case TYPE_CHARACTER_SET:
    case TYPE_CHARACTER_SET_COLLATE_EXACT:
      break;
    }
    DBUG_ASSERT(0);
    return false;
  }
  bool merge_exact_charset(const Lex_exact_charset &cs);
  bool merge_exact_collation(const Lex_exact_collation &cl);
  bool merge_context_collation(const Lex_context_collation &cl);
  bool merge_collation(const Lex_extended_collation_st &cl);
};


class Charset_collation_context
{
  /*
    Although the goal of m_charset_default is to store the meaning
    of CHARACTER SET DEFAULT, it does not necessarily point to a
    default collation of CHARACTER SET DEFAULT. It can point to its any
    arbitrary collation.
    For performance purposes we don't need to find the default
    collation at the instantiation time of "this", because:
    - m_charset_default may not be even needed during the resolution
    - when it's needed, in many cases it's passed to my_charset_same(),
      which does not need the default collation again.

    Note, m_charset_default and m_collate_default are not necessarily equal.

    - The default value for CHARACTER SET is taken from the upper level:
        CREATE DATABASE db1 CHARACTER SET DEFAULT; <-- @@character_set_server
        ALTER DATABASE db1 CHARACTER SET DEFAULT;  <-- @@character_set_server

    - The default value for COLLATE is taken from the upper level for CREATE:
        CREATE DATABASE db1 COLLATE DEFAULT; <-- @@collation_server
        CREATE TABLE db1.t1 COLLATE DEFAULT; <-- character set of "db1"

    - The default value for COLLATE is taken from the same level for ALTER:
        ALTER DATABASE db1 COLLATE DEFAULT; <-- the default collation of the
                                                current db1 character set
        ALTER TABLE db1.t1 COLLATE DEFAULT; <-- the default collation of the
                                                current db1.t1 character set
  */

  // comes from the upper level
  Lex_exact_charset_opt_extended_collate m_charset_default;

  // comes from the upper or the current level
  Lex_exact_collation m_collate_default;
public:
  Charset_collation_context(CHARSET_INFO *charset_default,
                            CHARSET_INFO *collate_default)
   :m_charset_default(charset_default,
                      !(charset_default->state & MY_CS_PRIMARY)),
    m_collate_default(collate_default)
  { }
  const Lex_exact_charset_opt_extended_collate charset_default() const
  {
    return m_charset_default;
  }
  const Lex_exact_collation collate_default() const
  {
    return m_collate_default;
  }
};


/*
  A universal container. It can store at the same time:
  - CHARACTER SET DEFAULT
  - CHARACTER SET cs_exact
  - COLLATE {cl_exact|cl_context}
  All three parts can co-exist.
  All three parts are optional.
  Parts can come in any arbitrary order, e.g:

    CHARACTER SET DEFAULT [CHARACTER SET latin1] COLLATE latin1_bin
    CHARACTER SET latin1 CHARACTER SET DEFAULT COLLATE latin1_bin
    COLLATE latin1_bin [CHARACTER SET latin1] CHARACTER SET DEFAULT
    COLLATE latin1_bin CHARACTER SET DEFAULT [CHARACTER SET latin1]
*/
class Lex_extended_charset_extended_collation_attrs_st:
                        public Lex_opt_context_charset_st,
                        public Lex_exact_charset_extended_collation_attrs_st
{
  enum charset_type_t
  {
    CHARSET_TYPE_EMPTY,
    CHARSET_TYPE_CONTEXT,
    CHARSET_TYPE_EXACT
  };
  /*
    Which part came first:
    - CHARACTER SET DEFAULT or
    - CHARACTER SET cs_exact
    e.g. to produce error messages preserving the user typed
    order of CHARACTER SET clauses in case of conflicts.
  */
  charset_type_t m_charset_order;
public:
  void init()
  {
    Lex_opt_context_charset_st::init();
    Lex_exact_charset_extended_collation_attrs_st::init();
    m_charset_order= CHARSET_TYPE_EMPTY;
  }
  void init(const Lex_exact_charset_opt_extended_collate &c)
  {
    Lex_opt_context_charset_st::init();
    Lex_exact_charset_extended_collation_attrs_st::init(c);
    m_charset_order= CHARSET_TYPE_EXACT;
  }
  bool is_empty() const
  {
    return Lex_opt_context_charset_st::is_empty() &&
           Lex_exact_charset_extended_collation_attrs_st::is_empty();
  }
  bool raise_if_charset_conflicts_with_default(
                        const Lex_exact_charset_opt_extended_collate &def) const;
  CHARSET_INFO *resolved_to_context(const Charset_collation_context &ctx) const;
  bool merge_charset_default();
  bool merge_exact_charset(const Lex_exact_charset &cs);
};


class Lex_exact_charset_extended_collation_attrs:
                        public Lex_exact_charset_extended_collation_attrs_st
{
public:
  Lex_exact_charset_extended_collation_attrs()
  {
    init();
  }
  Lex_exact_charset_extended_collation_attrs(CHARSET_INFO *collation, Type type)
  {
    init(collation, type);
  }
  explicit
  Lex_exact_charset_extended_collation_attrs(const Lex_exact_charset &cs)
  {
    init(cs.charset_info(), TYPE_CHARACTER_SET);
  }
  explicit
  Lex_exact_charset_extended_collation_attrs(const Lex_exact_collation &cl)
  {
    init(cl.charset_info(), TYPE_COLLATE_EXACT);
  }
  explicit
  Lex_exact_charset_extended_collation_attrs(const Lex_context_collation &cl)
  {
    init(cl.charset_info(), TYPE_COLLATE_CONTEXTUALLY_TYPED);
  }
  explicit
  Lex_exact_charset_extended_collation_attrs(
                    const Lex_exact_charset_opt_extended_collate &cscl)
  {
    init(cscl);
  }
  explicit
  Lex_exact_charset_extended_collation_attrs(const Lex_extended_collation_st &cl)
  {
    init(cl.charset_info(), type_from_lex_collation_type(cl.type()));
  }
  static Lex_exact_charset_extended_collation_attrs national(bool bin_mod)
  {
    return bin_mod ?
      Lex_exact_charset_extended_collation_attrs(&my_charset_utf8mb3_bin,
                                                 TYPE_COLLATE_EXACT) :
      Lex_exact_charset_extended_collation_attrs(&my_charset_utf8mb3_general_ci,
                                                 TYPE_CHARACTER_SET);
  }
};


class Lex_extended_charset_extended_collation_attrs:
  public Lex_extended_charset_extended_collation_attrs_st
{
public:
  Lex_extended_charset_extended_collation_attrs()
  {
    init();
  }
  explicit Lex_extended_charset_extended_collation_attrs(
    const Lex_exact_charset_opt_extended_collate &c)
  {
    init(c);
  }
};



using Lex_column_charset_collation_attrs_st =
        Lex_exact_charset_extended_collation_attrs_st;

using Lex_column_charset_collation_attrs =
        Lex_exact_charset_extended_collation_attrs;


using Lex_table_charset_collation_attrs_st =
        Lex_extended_charset_extended_collation_attrs_st;

using Lex_table_charset_collation_attrs =
        Lex_extended_charset_extended_collation_attrs;


#endif // LEX_CHARSET_INCLUDED

Directory Contents

Dirs: 3 × Files: 331

Name Size Perms Modified Actions
atomic DIR
- drwxr-xr-x 2026-02-05 23:02:33
Edit Download
data DIR
- drwxr-xr-x 2026-01-31 17:44:55
Edit Download
providers DIR
- drwxr-xr-x 2026-02-05 23:02:33
Edit Download
1.11 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.75 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
2.29 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
9.90 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.66 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.95 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.89 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.23 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
14.20 KB lrw-r--r-- 2026-01-31 17:15:45
Edit Download
4.76 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.09 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.74 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.88 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.06 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.66 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
12.51 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.21 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.00 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.32 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
980 B lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.21 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.53 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.06 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.69 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
4.59 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.09 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.56 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.83 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.36 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.21 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
217.13 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.15 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
7.11 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
8.00 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.04 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
16.87 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
11.62 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.69 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.45 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.38 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
195.05 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
884 B lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.35 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
5.55 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.28 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
63.18 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
6.10 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
9.26 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
5.29 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
7.07 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
852 B lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.29 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
276.55 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
131.91 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
11.24 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
135.39 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
38.68 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
24.67 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.11 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
73.24 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
57.64 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
70.99 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
64.35 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.31 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
33.75 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.54 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
9.44 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.08 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.95 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
29.14 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
23.74 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
139.75 KB lrw-r--r-- 2026-01-31 17:21:16
Edit Download
2.07 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.98 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.29 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
41.64 KB lrw-r--r-- 2026-01-31 17:21:16
Edit Download
6.31 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
2.17 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
45.28 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
184.67 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.85 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
19.37 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.38 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.73 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.25 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
37.60 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
6.94 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.17 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
22.64 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
17.10 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
4.62 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
4.78 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
14.58 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
40.10 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
204 B lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.17 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.95 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
2.37 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
4.64 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
7.11 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
2.98 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
27.01 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
6.05 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
5.37 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
2.56 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
10.93 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.68 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
4.74 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
904 B lrw-r--r-- 2026-01-31 10:47:54
Edit Download
14.15 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.84 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
4.77 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
18.14 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.16 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.45 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
848 B lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.40 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
9.88 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1014 B lrw-r--r-- 2026-01-31 10:47:54
Edit Download
2.04 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
3.14 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
6.34 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
10.17 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
3.90 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
67.90 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.10 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.10 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
4.53 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
64.36 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
14.20 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
8.29 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.21 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.28 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.30 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
19.40 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.14 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
3.08 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.35 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.59 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.85 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
2.21 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.52 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
4.25 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
2.56 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
5.43 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
2.78 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
28.21 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
973 B lrw-r--r-- 2026-01-31 10:47:54
Edit Download
5.94 KB lrw-r--r-- 2026-01-31 17:14:08
Edit Download
6.66 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
12.24 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
548 B lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.40 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
3.07 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
15.75 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.55 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.67 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
15.11 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.28 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.66 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
29.24 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
9.40 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
16.25 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
17.80 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.55 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.37 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.63 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
35.22 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.10 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
9.40 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.12 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.29 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
2.18 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.23 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
25.16 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
8.50 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.65 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.23 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
13.94 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
16.16 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
11.99 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
842 B lrw-r--r-- 2026-01-31 10:47:55
Edit Download
67 B lrw-r--r-- 2026-01-31 10:47:58
Edit Download
22.06 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.84 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
22.17 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.99 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
63.40 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
24.31 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
14.10 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
13.83 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.85 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.69 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
15.03 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
10.86 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
12.39 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
6.70 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
13.83 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
25.43 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
9.30 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
895 B lrw-r--r-- 2026-01-31 10:47:55
Edit Download
7.66 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.77 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
21.17 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.51 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
264.77 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.82 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.69 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.99 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
11.15 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.40 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
16.11 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.14 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.38 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.51 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.31 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.26 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.73 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.53 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
954 B lrw-r--r-- 2026-01-31 10:47:55
Edit Download
38.91 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
29.61 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.26 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
7.70 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.84 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
995 B lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.32 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.05 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
8.29 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
47.52 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
170.60 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
9.45 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.11 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
21.87 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.25 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.64 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
960 B lrw-r--r-- 2026-01-31 10:47:55
Edit Download
6.58 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
8.76 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
12.38 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.80 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
7.53 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
7.40 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.18 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
11.14 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
18.04 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
7.63 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.01 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
982 B lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.97 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.23 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
87.64 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.06 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.74 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
9.60 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.28 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
21.45 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
16.11 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
38.09 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
9.52 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.55 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
8.18 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
12.04 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.03 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.36 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
289.13 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
64.04 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.34 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
18.59 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
9.77 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
6.01 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.23 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.59 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.74 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.04 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.88 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.41 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
6.65 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.30 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
2.22 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
28.84 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.67 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
115.64 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.13 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.70 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.88 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.24 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.77 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.86 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
7.18 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.17 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.53 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.43 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.90 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.32 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.51 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
4.12 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
7.54 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.48 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
9.85 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
4.43 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.19 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
5.88 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
6.35 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.53 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
3.23 KB lrw-r--r-- 2026-01-31 10:47:54
Edit Download
1.01 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.64 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.47 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.50 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.53 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.45 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.80 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.21 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
21.02 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.20 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.68 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.60 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
5.48 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.55 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
2.47 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
3.86 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.77 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.77 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
11.22 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
17.75 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.08 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
9.58 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
4.39 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.51 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download
1.80 KB lrw-r--r-- 2026-01-31 10:47:55
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
© 2026 REDROOM — Secure File Manager. All rights reserved. Built with ❤️ & Red Dark UI