# The MIT License (MIT) # # Copyright (c) 2020 Google LLC. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # ITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # Copyright 2020 Google LLC # # Use of this source code is governed by an MIT-style # license that can be found in the LICENSE file or at # https://opensource.org/licenses/MIT. # frozen_string_literal: true module ActiveRecord module ConnectionAdapters module Spanner module Quoting def quote_column_name name self.class.quoted_column_names[name] ||= "`#{super.gsub '`', '``'}`".freeze end def quote_table_name name self.class.quoted_table_names[name] ||= super.gsub(".", "`.`").freeze end STR_ESCAPE_REGX = /[\n\r'\\]/.freeze STR_ESCAPE_VALUES = { "\n" => "\\n", "\r" => "\\r", "'" => "\\'", "\\" => "\\\\" }.freeze private_constant :STR_ESCAPE_REGX, :STR_ESCAPE_VALUES def quote_string s s.gsub STR_ESCAPE_REGX, STR_ESCAPE_VALUES end def quoted_binary value "b'#{value}'" end def _type_cast value case value when Array ActiveSupport::JSON.encode value else super end end end end end end